[Vote 830] Disable cryo pods for 30 minutes (#12175)

* [Vote 830] Disable cryo pods for 30 minutes

* Fixes typos
This commit is contained in:
adamsong
2021-08-30 12:36:14 -05:00
committed by GitHub
parent b2a296140e
commit 509b725e56
3 changed files with 17 additions and 2 deletions

View File

@@ -143,6 +143,11 @@ SUBSYSTEM_DEF(ticker)
return ..()
/datum/controller/subsystem/ticker/fire()
if(world.time > 30 MINUTES && !GLOB.cryopods_enabled)
GLOB.cryopods_enabled = TRUE
for(var/obj/machinery/cryopod/pod as anything in GLOB.cryopods)
pod.PowerOn()
switch(current_state)
if(GAME_STATE_STARTUP)
if(Master.initializations_finished_with_no_players_logged_in)