diff --git a/code/modules/events/money_spam.dm b/code/modules/events/money_spam.dm
index 40e852d27c8..a11170a5119 100644
--- a/code/modules/events/money_spam.dm
+++ b/code/modules/events/money_spam.dm
@@ -88,15 +88,6 @@
useMS.send_pda_message("[P.owner]", sender, message)
- if (prob(50)) //Give the AI an increased chance to intercept the message
- for(var/mob/living/silicon/ai/ai in mob_list)
- // Allows other AIs to intercept the message but the AI won't intercept their own message.
- if(ai.aiPDA != P && ai.aiPDA != src)
- ai.show_message("Intercepted message from [sender] (Unknown / spam?) to [P:owner]: [message]")
-
- //Commented out because we don't send messages like this anymore. Instead it will just popup in their chat window.
- //P.tnote += "← From [sender] (Unknown / spam?):
[message]
"
-
if (!P.silent)
playsound(P.loc, 'sound/machines/twobeep.ogg', 50, 1)
for (var/mob/O in hearers(3, P.loc))