From 08ef4ea49cd845ca636180858735775c6a27d064 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 21 Mar 2016 21:18:41 -0400 Subject: [PATCH] Flag Fix --- code/modules/clothing/clothing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 7f081f987f3..1257117237d 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -338,7 +338,7 @@ BLIND // can't see anything H.internals.icon_state = "internal0" H.internal = null if(flags_inv & HIDEFACE) //Means that only things like bandanas and balaclavas will be affected since they obscure the identity of the wearer. - flags_inv &= HIDEFACE /*Done after the above to avoid having to do a check for initial(src.flags_inv == HIDEFACE). + flags_inv &= ~HIDEFACE /*Done after the above to avoid having to do a check for initial(src.flags_inv == HIDEFACE). This reveals the user's face since the bandana will now be going on their head.*/ if(flags & MASKCOVERSMOUTH) //Mask won't cover the mouth any more since it's been pushed out of the way. Allows for CPRing with adjusted masks. flags &= ~MASKCOVERSMOUTH