diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index ebe9dbc0dc9..fffda3a2158 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -34,7 +34,7 @@ var/muzzled = is_muzzled() if(muzzled) var/obj/item/clothing/mask/muzzle/M = wear_mask - if(m_type == EMOTE_SOUND && M.mute & EMOTE_SOUND) + if(m_type == EMOTE_SOUND && M.mute >= MUZZLE_MUTE_MUFFLE) return //Not all muzzles block sound if(!can_speak()) return diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 0c00a918a5e..69653dfe1e8 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -12,7 +12,7 @@ var/muzzled = is_muzzled() if(muzzled) var/obj/item/clothing/mask/muzzle/M = wear_mask - if(M.mute == MUTE_NONE) + if(M.mute == MUZZLE_MUTE_NONE) muzzled = 0 //Not all muzzles block sound if(!can_speak()) muzzled = 1 diff --git a/code/modules/mob/living/update_status.dm b/code/modules/mob/living/update_status.dm index 004aae6b3e7..c7f9bdd0d96 100644 --- a/code/modules/mob/living/update_status.dm +++ b/code/modules/mob/living/update_status.dm @@ -52,7 +52,7 @@ if(!(silent || (disabilities & MUTE))) if(is_muzzled()) var/obj/item/clothing/mask/muzzle/M = wear_mask - if(M.mute >= MUTE_MUFFLE) + if(M.mute >= MUZZLE_MUTE_MUFFLE) return FALSE return TRUE else