Makes automute less prone to mute cultists.

This commit is contained in:
Neerti
2017-07-04 23:20:44 -04:00
parent 90586ec2ac
commit beccda6866
2 changed files with 1 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
/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)
if(spam_alert > 5)
cmd_admin_mute(src.mob, mute_type, 1)
else
spam_alert = max(0, spam_alert--)