mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 05:27:39 +01:00
Fixes compile error
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user