From 076d8c5a40774c5da1e6326e95a9d0a09d713f5d Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 20 Dec 2022 17:49:40 +1300 Subject: [PATCH] Fix build error (#13098) --- Content.Shared/Item/SharedMultiHandedItemSystem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Shared/Item/SharedMultiHandedItemSystem.cs b/Content.Shared/Item/SharedMultiHandedItemSystem.cs index deef57b872..98c88feb2a 100644 --- a/Content.Shared/Item/SharedMultiHandedItemSystem.cs +++ b/Content.Shared/Item/SharedMultiHandedItemSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Hands; +using Content.Shared.Hands; using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Popups; @@ -33,8 +33,8 @@ public abstract class SharedMultiHandedItemSystem : EntitySystem args.Cancel(); if (_timing.IsFirstTimePredicted) { - _popup.PopupEntity(Loc.GetString("multi-handed-item-pick-up-fail", - ("number", component.HandsNeeded - 1), ("item", uid)), args.User, Filter.Local()); + _popup.PopupCursor(Loc.GetString("multi-handed-item-pick-up-fail", + ("number", component.HandsNeeded - 1), ("item", uid)), args.User); } }