Skip to content

Commit

Permalink
woohoo no more annoying suit switching!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
Nomoresolvalou committed Aug 17, 2024
1 parent 0a1cfe3 commit 08716f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/surgery/xeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 08716f4

Please sign in to comment.