From 1801f474184dbfdf2672567990c8a0cce5991260 Mon Sep 17 00:00:00 2001 From: Connor Huffine Date: Tue, 30 Dec 2025 20:27:59 -0500 Subject: [PATCH] Fix broken FTL references (#42181) Add broken FTL links --- Content.Server/Implants/ImplanterSystem.cs | 4 ++-- Content.Shared/Silicons/Bots/MedibotSystem.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index 48e83e4878..08b744ee09 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -88,7 +88,7 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem if (!_doAfter.TryStartDoAfter(args)) return; - _popup.PopupEntity(Loc.GetString("injector-component-injecting-user"), target, user); + _popup.PopupEntity(Loc.GetString("injector-component-needle-injecting-user"), target, user); var userName = Identity.Entity(user, EntityManager); _popup.PopupEntity(Loc.GetString("implanter-component-implanting-target", ("user", userName)), user, target, PopupType.LargeCaution); @@ -112,7 +112,7 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem }; if (_doAfter.TryStartDoAfter(args)) - _popup.PopupEntity(Loc.GetString("injector-component-injecting-user"), target, user); + _popup.PopupEntity(Loc.GetString("injector-component-needle-injecting-user"), target, user); } diff --git a/Content.Shared/Silicons/Bots/MedibotSystem.cs b/Content.Shared/Silicons/Bots/MedibotSystem.cs index 68ee5ff405..2e832da456 100644 --- a/Content.Shared/Silicons/Bots/MedibotSystem.cs +++ b/Content.Shared/Silicons/Bots/MedibotSystem.cs @@ -135,7 +135,7 @@ public sealed class MedibotSystem : EntitySystem EnsureComp(target); _solutionContainer.TryAddReagent(injectable.Value, treatment.Reagent, treatment.Quantity, out _); - _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target); + _popup.PopupEntity(Loc.GetString("injector-component-feel-prick-message"), target, target); _popup.PopupClient(Loc.GetString("medibot-target-injected"), medibot, medibot); _audio.PlayPredicted(medibot.Comp.InjectSound, medibot, medibot); -- 2.52.0