From e1c84f7e9d3b65f87dfef54cbd56c4dbc81f5b49 Mon Sep 17 00:00:00 2001 From: KasparoVy Date: Sun, 30 Aug 2015 16:11:17 -0400 Subject: [PATCH] Allows Vox Quills to Show Through Helmet --- code/modules/clothing/spacesuits/miscellaneous.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index 38ef6ff4686..1a770189db6 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -12,6 +12,12 @@ sprite_sheets = list( "Vox" = 'icons/mob/species/vox/helmet.dmi' ) + /obj/item/clothing/head/helmet/space/capspace/equipped(var/mob/living/carbon/human/user, var/slot) + if (user.species.name == "Vox") + flags = HEADCOVERSEYES | HEADCOVERSMOUTH | STOPSPRESSUREDMAGE | THICKMATERIAL + else + flags = HEADCOVERSEYES | HEADCOVERSMOUTH | BLOCKHAIR | STOPSPRESSUREDMAGE | THICKMATERIAL + /obj/item/clothing/suit/space/captain name = "captain's space suit"