]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix broken FTL references (#42181)
authorConnor Huffine <chuffine@gmail.com>
Wed, 31 Dec 2025 01:27:59 +0000 (20:27 -0500)
committerGitHub <noreply@github.com>
Wed, 31 Dec 2025 01:27:59 +0000 (01:27 +0000)
Add broken FTL links

Content.Server/Implants/ImplanterSystem.cs
Content.Shared/Silicons/Bots/MedibotSystem.cs

index 48e83e4878cc069fb49ca457e715358684b9a6db..08b744ee09387b8ac7e8ff218058efe68fa5dbc5 100644 (file)
@@ -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);
 
     }
 
index 68ee5ff405007994c50a40ff65d1655b0b034944..2e832da456c3a338ac1cad4bed1799fbc716ec51 100644 (file)
@@ -135,7 +135,7 @@ public sealed class MedibotSystem : EntitySystem
         EnsureComp<NPCRecentlyInjectedComponent>(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);