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}";