From abd28eb456ac21858aebb397e831faf5e38d601f Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 27 Feb 2019 22:41:55 -0500 Subject: [PATCH] Makes the atmospherics turf system have a wait of 2 instead of 1 in an attempt to alleviate some lag --- code/controllers/subsystem/air_turfs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/air_turfs.dm b/code/controllers/subsystem/air_turfs.dm index 96e6e05f6f..2902940bf9 100644 --- a/code/controllers/subsystem/air_turfs.dm +++ b/code/controllers/subsystem/air_turfs.dm @@ -4,7 +4,7 @@ SUBSYSTEM_DEF(air_turfs) name = "Atmospherics - Turfs" init_order = INIT_ORDER_AIR_TURFS priority = FIRE_PRIORITY_AIR_TURFS - wait = 1 + wait = 2 flags = SS_BACKGROUND runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME var/list/currentrun = list()