From 04368b1e3792eb5cc63efa505156b2c4c518b272 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 ++-- 1 file changed, 2 insertions(+), 2 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); }