Merge pull request #11804 from Markolie/fix123

Water turf runtime fix
This commit is contained in:
variableundefined
2019-07-09 16:13:22 +08:00
committed by GitHub
2 changed files with 7 additions and 4 deletions
+3 -4
View File
@@ -23,13 +23,12 @@
/turf/simulated/proc/burn_tile()
return
/turf/simulated/proc/water_act(volume, temperature, source)
/turf/simulated/water_act(volume, temperature, source)
. = ..()
if(volume >= 3)
MakeSlippery()
for(var/mob/living/carbon/slime/M in src)
M.apply_water()
var/hotspot = (locate(/obj/effect/hotspot) in src)
if(hotspot)
var/datum/gas_mixture/lowertemp = remove_air(air.total_moles())
+4
View File
@@ -509,3 +509,7 @@
/turf/AllowDrop()
return TRUE
/turf/proc/water_act(volume, temperature, source)
for(var/mob/living/carbon/slime/M in src)
M.apply_water()