From 50064d86b3a865b6fbd671f61872eea9c9346277 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Thu, 5 Feb 2015 11:54:51 +0100 Subject: [PATCH] Corrects ATM Machine syndromes. --- code/game/machinery/computer/RCON_Console.dm | 4 ++-- code/modules/power/smes.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/computer/RCON_Console.dm b/code/game/machinery/computer/RCON_Console.dm index e1ecdb28d2f..7ab0a135f10 100644 --- a/code/game/machinery/computer/RCON_Console.dm +++ b/code/game/machinery/computer/RCON_Console.dm @@ -5,7 +5,7 @@ // Allows remote operation of electrical systems on station (SMESs and Breaker Boxes) /obj/machinery/computer/rcon - name = "\improper RCON remote control console" + name = "\improper RCON console" desc = "Console used to remotely control machinery on the station." icon = 'icons/obj/computer.dmi' icon_state = "ai-fixer" @@ -61,7 +61,7 @@ ui = nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) if (!ui) - ui = new(user, src, ui_key, "rcon.tmpl", "RCON Control Console", 600, 400) + ui = new(user, src, ui_key, "rcon.tmpl", "RCON Console", 600, 400) ui.set_initial_data(data) ui.open() ui.set_auto_update(1) diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm index 18aa6b4885f..8d596794745 100644 --- a/code/modules/power/smes.dm +++ b/code/modules/power/smes.dm @@ -313,7 +313,7 @@ if (!ui) // the ui does not exist, so we'll create a new() one // for a list of parameters and their descriptions see the code docs in \code\modules\nano\nanoui.dm - ui = new(user, src, ui_key, "smes.tmpl", "SMES Power Storage Unit", 540, 380) + ui = new(user, src, ui_key, "smes.tmpl", "SMES Unit", 540, 380) // when the ui is first opened this is the data it will use ui.set_initial_data(data) // open the new ui window