counter support

This commit is contained in:
Kyep
2019-04-22 21:29:11 -07:00
parent 98d3e310b4
commit 7ff8357499
+2 -2
View File
@@ -50,11 +50,11 @@
force_cryo_human(src)
/mob/living/carbon/human/proc/handle_ssd()
if(player_logged > 0 && config.auto_cryo_ssd_mins && stat != DEAD && job)
if(player_logged > 0 && stat != DEAD && job)
player_logged++
if(istype(loc, /obj/machinery/cryopod))
return
if((player_logged >= (config.auto_cryo_ssd_mins * 30)) && player_logged % 30 == 0)
if(config.auto_cryo_ssd_mins && (player_logged >= (config.auto_cryo_ssd_mins * 30)) && player_logged % 30 == 0)
var/turf/T = get_turf(src)
if(!is_station_level(T.z))
return