Fixes compile error

This commit is contained in:
Unknown
2019-03-28 15:30:41 -04:00
parent f75332f455
commit 62b141bbf0
@@ -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