From beccda6866ff6ac4e3a507193b546db65a449d10 Mon Sep 17 00:00:00 2001 From: Neerti Date: Tue, 4 Jul 2017 23:20:44 -0400 Subject: [PATCH] Makes automute less prone to mute cultists. --- code/game/gamemodes/cult/runes.dm | 2 -- code/modules/client/spam_prevention.dm | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index 027b61333e..6290123585 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -626,10 +626,8 @@ var/list/sacrificed = list() if(istype(src,/obj/effect/rune)) usr.say("O bidai nabora se[pick("'","`")]sma!") - usr.say("[input]") else usr.whisper("O bidai nabora se[pick("'","`")]sma!") - usr.whisper("[input]") input = sanitize(input) log_and_message_admins("used a communicate rune to say '[input]'") diff --git a/code/modules/client/spam_prevention.dm b/code/modules/client/spam_prevention.dm index 6802e1d695..ed687db8ce 100644 --- a/code/modules/client/spam_prevention.dm +++ b/code/modules/client/spam_prevention.dm @@ -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--)