diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 09c2d4850a..e6f5827151 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -1767,7 +1767,7 @@ datum if(!M) M = holder.my_atom M:bodytemperature += 5 if(prob(40) && !istype(M, /mob/living/carbon/metroid)) - M.take_organ_damage(0, 1) + M.apply_damage(1, BURN, pick("head", "chest")) if(istype(M, /mob/living/carbon/metroid)) M:bodytemperature += rand(5,20) @@ -1822,7 +1822,7 @@ datum if(!M) M = holder.my_atom M:bodytemperature -= 5 if(prob(40)) - M.take_organ_damage(0, 1) + M.apply_damage(1, BURN, pick("head", "chest")) if(prob(80) && istype(M, /mob/living/carbon/metroid)) M.adjustFireLoss(rand(5,20)) M << "\red You feel a terrible chill inside your body!"