From 46486249f0c70f1086d4a19ebe08a7c49d064d12 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sat, 14 Jan 2017 23:06:24 -0600 Subject: [PATCH] Makes the automute less strict on timing --- code/modules/client/spam_prevention.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/spam_prevention.dm b/code/modules/client/spam_prevention.dm index 68ffa12ff76..6802e1d6951 100644 --- a/code/modules/client/spam_prevention.dm +++ b/code/modules/client/spam_prevention.dm @@ -3,7 +3,7 @@ var/last_message_time = 0 var/spam_alert = 0 -/client/proc/handle_spam_prevention(var/mute_type = MUTE_ALL, var/spam_delay = 1 SECOND) +/client/proc/handle_spam_prevention(var/mute_type = MUTE_ALL, var/spam_delay = 0.5 SECONDS) if(world.time - last_message_time < spam_delay) spam_alert++ if(spam_alert > 3)