From: lunarcomets <140772713+lunarcomets@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:19:43 +0000 (-0700) Subject: fix double interaction popup (#26684) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=6b84a04cde59894995cd69328ae2fec662424c94;p=space-station-14.git fix double interaction popup (#26684) change popentity to popupclient --- diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index e4864b1f7f..8d49ce31f0 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -682,7 +682,7 @@ namespace Content.Shared.Interaction if (!inRange && popup && _gameTiming.IsFirstTimePredicted) { var message = Loc.GetString("interaction-system-user-interaction-cannot-reach"); - _popupSystem.PopupEntity(message, origin, origin); + _popupSystem.PopupClient(message, origin, origin); } return inRange;