From c74c9b48e968c1a7de1342de32e7bd3f15c6bc69 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Wed, 15 Feb 2012 14:46:35 -0500 Subject: [PATCH] fix capsicum and frost oil to make sense --- code/modules/chemical/Chemistry-Reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 09c2d4850a5..e6f58271514 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!"