Makes the automute less strict on timing

This commit is contained in:
Anewbe
2017-01-14 23:06:24 -06:00
parent 93a630e2e8
commit 46486249f0

View File

@@ -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)