Bugfixins

This commit is contained in:
ZomgPonies
2014-06-08 22:04:16 -04:00
parent a3114fd4e8
commit 2c709df1da
+3 -2
View File
@@ -1854,8 +1854,9 @@ var/global/list/brutefireloss_overlays = list("1" = image("icon" = 'icons/mob/sc
for(var/mob/living/carbon/human/H in range(decaylevel, src))
if(prob(5))
if(airborne_can_reach(get_turf(src), get_turf(H)))
if(loc == istype(loc,/obj/item/bodybag)) return
if(H.wear_mask && H.wear_mask == istype(H.wear_mask,/obj/item/clothing/mask/surgical)) return
if(istype(loc,/obj/item/bodybag)) return
if(H.wear_mask && istype(H.wear_mask,/obj/item/clothing/mask/surgical)) return
if(H.wear_mask && istype(H.wear_mask,/obj/item/clothing/mask/breath/medical)) return
H << "<spawn class='warning'>You smell something foul..."
H.vomit()