Fixes for CL

This commit is contained in:
Alffd
2018-07-22 16:12:56 -04:00
parent 4ff5450832
commit b58e83da53
2 changed files with 26 additions and 12 deletions
+8 -1
View File
@@ -49,7 +49,14 @@
// Whether the mob is capable of talking
/mob/living/can_speak()
return !(silent || (disabilities & MUTE))
if(!(silent || (disabilities & MUTE)))
if(is_muzzled())
var/obj/item/clothing/mask/muzzle/M = wear_mask
if(M.mute == 2)
return FALSE
return TRUE
else
return FALSE
// Whether the mob is capable of standing or not
/mob/living/proc/can_stand()