From 62b141bbf07c6f910b8e52aaee5efef049114281 Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 28 Mar 2019 15:30:41 -0400 Subject: [PATCH] Fixes compile error --- .../Chemistry-Reagents/Chemistry-Reagents-Medicine.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index 62cf7fa1411..526adad7b98 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -534,7 +534,7 @@ if(H.losebreath >= 15 && prob(H.losebreath)) H.Stun(2) else - H.losebreath = Clamp(H.losebreath + 3, 0, 20) + H.losebreath = CLAMP(H.losebreath + 3, 0, 20) /datum/reagent/gastirodaxon name = "Gastirodaxon" @@ -617,7 +617,7 @@ I.damage = max(I.damage - 2 * removed * repair_strength, 0) H.Confuse(2) if(M.reagents.has_reagent("respirodaxon") || M.reagents.has_reagent("peridaxon")) - H.losebreath = Clamp(H.losebreath + 1, 0, 10) + H.losebreath = CLAMP(H.losebreath + 1, 0, 10) /datum/reagent/immunosuprizine name = "Immunosuprizine" @@ -913,7 +913,7 @@ M.make_dizzy(5) if(prob(20)) M.hallucination = max(M.hallucination, 10) - + //One of the levofloxacin side effects is 'spontaneous tendon rupture', which I'll immitate here. 1:1000 chance, so, pretty darn rare. if(ishuman(M) && rand(1,10000) == 1) //VOREStation Edit (more rare) var/obj/item/organ/external/eo = pick(H.organs) //Misleading variable name, 'organs' is only external organs