From e79cd3369ffd4078dca620a5a478590b177ede81 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sun, 1 Oct 2017 17:26:11 +0300 Subject: [PATCH 1/2] Fixes station name in cargo stock displays (#31155) --- code/modules/stock_market/computer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/stock_market/computer.dm b/code/modules/stock_market/computer.dm index 90ad08c4bb..3422145ec3 100644 --- a/code/modules/stock_market/computer.dm +++ b/code/modules/stock_market/computer.dm @@ -13,7 +13,7 @@ /obj/machinery/computer/stockexchange/Initialize() . = ..() - logged_in = "[station_name()] Cargo Department" + logged_in = "SS13 Cargo Department" /obj/machinery/computer/stockexchange/proc/balance() if (!logged_in) @@ -63,7 +63,7 @@ a.updated { "} var/dat = "[station_name()] Stock Exchange[css]" - dat += "Welcome, [logged_in]
Credits: [balance()]
" + dat += "Welcome, [station_name()] Cargo Department
Credits: [balance()]
" for (var/datum/stock/S in GLOB.stockExchange.last_read) var/list/LR = GLOB.stockExchange.last_read[S] if (!(logged_in in LR))