From 7a3c2227586a53c0464029c14cae5da231866e85 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 16 Jan 2018 08:38:27 -0500 Subject: [PATCH 1/2] Merge pull request #34460 from AnturK/whyijustwastedhalfanhourlookingforatypo Fixes ChangeTurf runtimes in late loaded templates. --- code/modules/mapping/reader.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm index e73782edbc..365679f5d3 100644 --- a/code/modules/mapping/reader.dm +++ b/code/modules/mapping/reader.dm @@ -178,7 +178,7 @@ GLOBAL_DATUM_INIT(_preloader, /dmm_suite/preloader, new) for(var/t in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]))) var/turf/T = t //we do this after we load everything in. if we don't; we'll have weird atmos bugs regarding atmos adjacent turfs - T.AfterChange(TRUE) + T.AfterChange(CHANGETURF_IGNORE_AIR) return bounds /**