From 5b75c14ad7ea840be896ff9d370346a6daef867b Mon Sep 17 00:00:00 2001 From: Swept Date: Mon, 22 Feb 2021 08:58:46 +0000 Subject: [PATCH] Initial (#3366) --- .../GameObjects/Components/Power/AME/AMEWindow.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Content.Client/GameObjects/Components/Power/AME/AMEWindow.cs b/Content.Client/GameObjects/Components/Power/AME/AMEWindow.cs index 27427a9888..a6b13fc39d 100644 --- a/Content.Client/GameObjects/Components/Power/AME/AMEWindow.cs +++ b/Content.Client/GameObjects/Components/Power/AME/AMEWindow.cs @@ -149,6 +149,15 @@ namespace Content.Client.GameObjects.Components.Power.AME ToggleInjection.Disabled = true; } + if (!castState.Injecting) + { + InjectionStatus.Text = Loc.GetString("Not Injecting"); + } + else + { + InjectionStatus.Text = Loc.GetString("Injecting..."); + } + RefreshPartsButton.Disabled = castState.Injecting; CoreCount.Text = $"{castState.CoreCount}";