From cfd17b50306cb4b06daaf2d200e12002967dc08d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 9 Sep 2020 08:29:06 +0200 Subject: [PATCH] [MIRROR] Fix ruins overlapping the station and away missions increasing world size (#716) * 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. * Fix ruins overlapping the station and away missions increasing world size Co-authored-by: Whoneedspacee --- 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