From 5f6064b6dc837bbc596c738301c092e8efb4689a Mon Sep 17 00:00:00 2001 From: Markolie Date: Fri, 14 Aug 2015 17:56:00 +0200 Subject: [PATCH] Do not capitalize security level number --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 0b8d46fa443..86d43e001a9 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -316,7 +316,7 @@ var/shuttle_call/shuttle_calls[0] list("alert"="biohazard", "label"="Biohazard", "desc"="Great for virus outbreaks and parties."), ) ) - data["security_level"] = capitalize(security_level) + data["security_level"] = security_level data["str_security_level"] = capitalize(get_security_level()) data["levels"] = list( list("id"=SEC_LEVEL_GREEN, "name"="Green"),