From 6b84a04cde59894995cd69328ae2fec662424c94 Mon Sep 17 00:00:00 2001 From: lunarcomets <140772713+lunarcomets@users.noreply.github.com> Date: Wed, 3 Apr 2024 06:19:43 -0700 Subject: [PATCH] fix double interaction popup (#26684) change popentity to popupclient --- Content.Shared/Interaction/SharedInteractionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.52.0