From da2ea729ee8e022057e016b372fb65c3e1063bd5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 30 Apr 2018 22:19:59 -0400 Subject: [PATCH] Merge pull request #37561 from AnturK/customloadingfix Fixes loading custom aways. --- code/controllers/subsystem/mapping.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 82a59dc857..9b6944403a 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -355,8 +355,8 @@ GLOBAL_LIST_EMPTY(the_station_areas) var/mapfile = input("Pick file:", "File") as null|file if(!mapfile) return - away_name = mapfile + " custom" - to_chat(usr,"Loading [mapfile]...") + away_name = "[mapfile] custom" + to_chat(usr,"Loading [away_name]...") var/datum/map_template/template = new(mapfile, "Away Mission") away_level = template.load_new_z() else