More fixes

This commit is contained in:
Alffd
2018-08-14 00:53:40 -04:00
parent 1c7923f6f7
commit 9f95664623
2 changed files with 2 additions and 2 deletions
@@ -12,7 +12,7 @@
var/muzzled = is_muzzled()
if(muzzled)
var/obj/item/clothing/mask/muzzle/M = wear_mask
if(M.mute & EMOTE_SOUND)
if(!(M.mute & EMOTE_SOUND))
muzzled = 0 //Not all muzzles block sound
if(!can_speak())
muzzled = 1
+1 -1
View File
@@ -52,7 +52,7 @@
if(!(silent || (disabilities & MUTE)))
if(is_muzzled())
var/obj/item/clothing/mask/muzzle/M = wear_mask
if(M.mute == 2)
if(M.mute & EMOTE_SOUND)
return FALSE
return TRUE
else