From 058231f5c85a19538bd66b72f48a3bf60a270c3f Mon Sep 17 00:00:00 2001 From: jwhitak <69739118+jwhitak@users.noreply.github.com> Date: Mon, 16 Sep 2024 07:19:08 -0500 Subject: [PATCH] fire bad (#37123) --- code/modules/mob/living/carbon/human/species/plasmaman.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/plasmaman.dm b/code/modules/mob/living/carbon/human/species/plasmaman.dm index a4fab8819d3..c62015ab97d 100644 --- a/code/modules/mob/living/carbon/human/species/plasmaman.dm +++ b/code/modules/mob/living/carbon/human/species/plasmaman.dm @@ -68,12 +68,11 @@ if(environment.total_moles && ((environment[GAS_OXYGEN] / environment.total_moles) >= OXYCONCEN_PLASMEN_IGNITION)) //How's the concentration doing? if(!host.on_fire) to_chat(host, "Your body reacts with the atmosphere and bursts into flame!") - host.adjust_fire_stacks(0.5) host.ignite() else var/obj/item/clothing/suit/PS=host.wear_suit if(istype(PS)) - if(host.fire_stacks > 0) + if(host.on_fire) PS.Extinguish(host) else PS.regulate_temp_of_wearer(host)