]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix game not building (#16097)
authorNemanja <98561806+EmoGarbage404@users.noreply.github.com>
Thu, 4 May 2023 23:40:47 +0000 (19:40 -0400)
committerGitHub <noreply@github.com>
Thu, 4 May 2023 23:40:47 +0000 (16:40 -0700)
Content.Server/Medical/DefibrillatorSystem.cs

index b21211c45e5abe775a6f3b70b150dbc4b8428723..e821a25a44a2231f14a00496edf2e6a2a1cd249d 100644 (file)
@@ -224,14 +224,14 @@ public sealed class DefibrillatorSystem : EntitySystem
             if (mindComp.Mind.CurrentEntity != target)
             {
                 _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-ghosted"),
-                    InGameICChatType.Speak, true, true);
+                    InGameICChatType.Speak, true);
                 _euiManager.OpenEui(new ReturnToBodyEui(mindComp.Mind), session);
             }
         }
         else
         {
             _chatManager.TrySendInGameICMessage(uid, Loc.GetString("defibrillator-no-mind"),
-                InGameICChatType.Speak, true, true);
+                InGameICChatType.Speak, true);
         }
 
         var sound = _mobState.IsAlive(target, mob) && session != null