From d57c560fe1abce5ad73db9dd85eb54165093dccb Mon Sep 17 00:00:00 2001 From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> Date: Thu, 6 Dec 2018 16:45:17 -0600 Subject: [PATCH] Lets try this again, hm? --- code/game/gamemodes/cult/cult_comms.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/game/gamemodes/cult/cult_comms.dm b/code/game/gamemodes/cult/cult_comms.dm index 2162828eda9..c852a682e84 100644 --- a/code/game/gamemodes/cult/cult_comms.dm +++ b/code/game/gamemodes/cult/cult_comms.dm @@ -17,13 +17,12 @@ cultist_commune(usr, input) return -/datum/language/proc/check_can_speak(mob/living/speaker) - return TRUE + /proc/cultist_commune(mob/living/user, message) if(!message) return - if(!check_can_speak(user)) //User can't be under a vow of silence or have the mute disability to commune. + if((disabilities && DISABILITY_FLAG_MUTE) || silent) //User can't be under a vow of silence or have the mute disability to commune. to_chat(user, "You cannot speak!") return user.whisper("O bidai nabora se[pick("'","`")]sma!")