From 73637ccbe69f12cf128eca83b74cc7e9a30d852a Mon Sep 17 00:00:00 2001 From: KasparoVy Date: Mon, 31 Aug 2015 16:39:08 -0400 Subject: [PATCH] Implements Markolie's Suggestion Condenses the code. --- code/modules/clothing/spacesuits/miscellaneous.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index ea4f3b3af40..489886d697f 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -14,10 +14,9 @@ ) /obj/item/clothing/head/helmet/space/capspace/equipped(var/mob/living/carbon/human/user, var/slot) if (ishuman(user) && user.species.name == "Vox") - flags = HEADCOVERSEYES | HEADCOVERSMOUTH | STOPSPRESSUREDMAGE | THICKMATERIAL + flags &= ~BLOCKHAIR else - flags = HEADCOVERSEYES | HEADCOVERSMOUTH | BLOCKHAIR | STOPSPRESSUREDMAGE | THICKMATERIAL - + flags |= BLOCKHAIR /obj/item/clothing/suit/space/captain name = "captain's space suit"