From 8c514c1e821af966fb322f4bdac48b978d4abe4c Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 15 Jan 2018 10:16:47 +0100 Subject: [PATCH] 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 e73782edbcf..365679f5d3e 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 /**