From 2a4bf712aff91f1ccf893c84ca9c8d5001d66aa7 Mon Sep 17 00:00:00 2001 From: Whoneedspacee Date: Tue, 8 Sep 2020 23:01:27 -0400 Subject: [PATCH] Fix ruins overlapping the station and away missions increasing world size (#53558) Changes the bounds size proc from async to not. We need to make sure the bounds on map templates are correct before they are spawned or weird issues can happen. Fixes #53542. Fixes #53562. --- code/modules/mapping/map_template.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mapping/map_template.dm b/code/modules/mapping/map_template.dm index 13957862070..7662461628a 100644 --- a/code/modules/mapping/map_template.dm +++ b/code/modules/mapping/map_template.dm @@ -11,7 +11,7 @@ if(path) mappath = path if(mappath) - INVOKE_ASYNC(src, .proc/preload_size, mappath, cache) + preload_size(mappath, cache) if(rename) name = rename