From 458212ac29c3300fb7cf1fabb8fd85eb12abdd37 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 18 Mar 2020 02:06:28 -0400 Subject: [PATCH] Correctly create circulation cus cats can't cope --- code/modules/maps/tg/map_template_vr.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/modules/maps/tg/map_template_vr.dm b/code/modules/maps/tg/map_template_vr.dm index 2f89ffcf0c..6f12c85ba9 100644 --- a/code/modules/maps/tg/map_template_vr.dm +++ b/code/modules/maps/tg/map_template_vr.dm @@ -1,6 +1,12 @@ /datum/map_template/proc/on_map_loaded(z) - if(lighting_overlays_initialised) //We missed sslighting init! + //We missed air init! + if(SSair.subsystem_initialized) + for(var/turf/simulated/T in block(locate(1,1,z), locate(world.maxx, world.maxy, z))) + T.update_air_properties() + //We missed sslighting init! + if(lighting_overlays_initialised) for(var/Trf in block(locate(1,1,z), locate(world.maxx, world.maxy, z))) var/turf/T = Trf //faster than implicit istype with typed for loop T.lighting_build_overlay() + return \ No newline at end of file