mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Fixes the last fixes
This commit is contained in:
@@ -468,8 +468,5 @@ emp_act
|
||||
..()
|
||||
|
||||
/mob/living/carbon/human/water_act(volume, temperature, source)
|
||||
..()
|
||||
if(temperature >= 330) bodytemperature = bodytemperature + (temperature - bodytemperature)
|
||||
if(temperature <= 280) bodytemperature = bodytemperature - (bodytemperature - temperature)
|
||||
species.water_act(src,volume,temperature,source)
|
||||
|
||||
|
||||
@@ -679,4 +679,5 @@ It'll return null if the organ doesn't correspond, so include null checks when u
|
||||
H.see_invisible = H.see_override
|
||||
|
||||
/datum/species/proc/water_act(mob/living/carbon/human/M, volume, temperature, source)
|
||||
return
|
||||
if(temperature >= 330) M.bodytemperature = M.bodytemperature + (temperature - M.bodytemperature)
|
||||
if(temperature <= 280) M.bodytemperature = M.bodytemperature - (M.bodytemperature - temperature)
|
||||
Reference in New Issue
Block a user