From: Connor Huffine Date: Wed, 31 Dec 2025 01:27:59 +0000 (-0500) Subject: Fix broken FTL references (#42181) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=1801f474184dbfdf2672567990c8a0cce5991260;p=space-station-14.git Fix broken FTL references (#42181) Add broken FTL links --- 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);