From: Winkarst-cpu <74284083+Winkarst-cpu@users.noreply.github.com> Date: Tue, 9 Jul 2024 23:48:56 +0000 (+0300) Subject: Fix borg's popup spam (#29861) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=c57009b646e63fb158dd2af9ff1a7586720a2202;p=space-station-14.git Fix borg's popup spam (#29861) Fix borg popup spam Co-authored-by: Winkarst-cpu --- diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index bf4af1cb9a..22a90aa0a6 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -365,7 +365,7 @@ public sealed class LockSystem : EntitySystem { args.Cancel(); if (lockComp.Locked) - _sharedPopupSystem.PopupEntity(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); + _sharedPopupSystem.PopupClient(Loc.GetString("entity-storage-component-locked-message"), uid, args.User); } }