From 54ef24b75a29ff08e3394b04d0168de05605637f Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 23 Apr 2018 02:18:29 +0200 Subject: [PATCH] Adds a note if the loaded away is custom or not in the logs. (#37305) --- code/controllers/subsystem/mapping.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 2deda19a30..ec3783c9c0 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -355,7 +355,7 @@ GLOBAL_LIST_EMPTY(the_station_areas) var/mapfile = input("Pick file:", "File") as null|file if(!mapfile) return - away_name = mapfile + away_name = mapfile + " custom" to_chat(usr,"Loading [mapfile]...") var/datum/map_template/template = new(mapfile, "Away Mission") away_level = template.load_new_z()