From ae5eb795a4ebda566872d485037f432a40d7d4e4 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Tue, 19 Sep 2017 07:01:06 -0400 Subject: [PATCH] Update living.dm --- code/modules/mob/living/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 45e948d3f43..2c2d3da0062 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -706,7 +706,7 @@ floating = 0 // If we were without gravity, the bouncing animation got stopped, so we make sure to restart it in next life(). /mob/living/proc/get_temperature(datum/gas_mixture/environment) - var/loc_temp = environment ? environment.temp : T0C + var/loc_temp = environment ? environment.temperature : T0C if(isobj(loc)) var/obj/oloc = loc var/obj_temp = oloc.return_temperature()