From 08716f4b4374caeaf2c210e843ec07a191e740d8 Mon Sep 17 00:00:00 2001 From: Nomoresolvalou Date: Fri, 16 Aug 2024 20:59:37 -0500 Subject: [PATCH] woohoo no more annoying suit switching!!! --- code/modules/surgery/xeno.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/xeno.dm b/code/modules/surgery/xeno.dm index d3175a2f78d5..7907d96b99e4 100644 --- a/code/modules/surgery/xeno.dm +++ b/code/modules/surgery/xeno.dm @@ -70,7 +70,7 @@ SPAN_NOTICE("[user] successfully destroys your carapace into bits and pieces using [tool]."),, SPAN_NOTICE("[user] successfully destroys [target.caste_type] carapace into bits and pieces using [tool].")) for(var/mob/living/carbon/human/victim in orange(1, target)) - if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + if((istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) || istype(victim.wear_suit, /obj/item/clothing/suit/storage/synthbio)) && (istype(victim.head, /obj/item/clothing/head/bio_hood) || istype(victim.head, /obj/item/clothing/head/bio_hood/synth))) continue to_chat(victim, SPAN_HIGHDANGER("You are covered in acid as you feel agonizing pain!")) victim.apply_damage(rand(75, 125), BURN) // you WILL wear biosuit.