From 69dfd23d1b06ef4da8a5964dc022570d6ee4dcb1 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 22 Aug 2015 03:26:41 +0930 Subject: [PATCH] Compile fix. --- .../modules/mob/living/carbon/human/species/outsider/vox.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/outsider/vox.dm b/code/modules/mob/living/carbon/human/species/outsider/vox.dm index 5691d28a32..9c7685d3d3 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/vox.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/vox.dm @@ -115,9 +115,11 @@ continue var/mob/living/carbon/human/target = M if(istype(target)) - if(target.head && (target.head.flags & HEADCOVERSMOUTH) && (target.head.flags & AIRTIGHT)) + if(target.internals) continue - if(target.wear_mask && (target.wear_mask.flags & MASKCOVERSMOUTH) && (target.wear_mask.flags & BLOCK_GAS_SMOKE_EFFECT)) + if(target.head && (target.head.body_parts_covered & FACE) && (target.head.flags & AIRTIGHT)) + continue + if(target.wear_mask && (target.wear_mask.body_parts_covered & FACE) && (target.wear_mask.flags & BLOCK_GAS_SMOKE_EFFECT)) continue M << "A terrible stench emanates from \the [H]."