From e5ee5595e0319ec488fa8e9b314cf185b17d434c Mon Sep 17 00:00:00 2001 From: Tupinambis Date: Thu, 30 Jan 2020 15:22:41 -0600 Subject: [PATCH] How the fuck was this not fixed for like a year. --- code/modules/mob/living/carbon/human/update_icons.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index cd68dabbef..fa6cc44fca 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -461,6 +461,8 @@ There are several things that need to be remembered: var/alt_icon = M.alternate_worn_icon || 'icons/mob/mask.dmi' var/muzzled = FALSE var/variation_flag = NONE + if(head && (head.flags_inv & HIDEMASK)) + return if(("mam_snouts" in dna.species.default_features) && dna.features["mam_snouts"] != "None") muzzled = TRUE if(!muzzled && ("snout" in dna.species.default_features) && dna.features["snout"] != "None")