Earlyport Fixes

This commit is contained in:
Unknown
2020-03-20 13:50:44 -04:00
parent edd4a0047d
commit db87175163
12 changed files with 43 additions and 27 deletions

View File

@@ -175,10 +175,10 @@
S.visible_message("<span class='warning'>[S]'s flesh sizzles where the water touches it!</span>", "<span class='danger'>Your flesh burns in the water!</span>")
// Then extinguish people on fire.
var/needed = L.fire_stacks * 5
var/needed = max(0,L.fire_stacks) * 5
if(amount > needed)
L.ExtinguishMob()
L.adjust_fire_stacks(-(amount / 5))
L.water_act(amount / 25) // Div by 25, as water_act multiplies it by 5 in order to calculate firestack modification.
remove_self(needed)
/* //VOREStation Edit Start. Stops slimes from dying from water. Fixes fuel affect_ingest, too.
/datum/reagent/water/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)