fix capsicum and frost oil to make sense

This commit is contained in:
Tastyfish
2012-02-15 14:46:35 -05:00
parent cb5907efb4
commit c74c9b48e9

View File

@@ -1767,7 +1767,7 @@ datum
if(!M) M = holder.my_atom if(!M) M = holder.my_atom
M:bodytemperature += 5 M:bodytemperature += 5
if(prob(40) && !istype(M, /mob/living/carbon/metroid)) 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)) if(istype(M, /mob/living/carbon/metroid))
M:bodytemperature += rand(5,20) M:bodytemperature += rand(5,20)
@@ -1822,7 +1822,7 @@ datum
if(!M) M = holder.my_atom if(!M) M = holder.my_atom
M:bodytemperature -= 5 M:bodytemperature -= 5
if(prob(40)) 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)) if(prob(80) && istype(M, /mob/living/carbon/metroid))
M.adjustFireLoss(rand(5,20)) M.adjustFireLoss(rand(5,20))
M << "\red You feel a terrible chill inside your body!" M << "\red You feel a terrible chill inside your body!"