From faec9bd83baade6bde40ad581991052ee161fa9c Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Thu, 26 Jun 2025 17:29:22 +0200 Subject: [PATCH] Fix multi handed items (#38603) --- Content.Shared/Item/MultiHandedItemSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Item/MultiHandedItemSystem.cs b/Content.Shared/Item/MultiHandedItemSystem.cs index f17ccdc922..db64610eae 100644 --- a/Content.Shared/Item/MultiHandedItemSystem.cs +++ b/Content.Shared/Item/MultiHandedItemSystem.cs @@ -37,7 +37,7 @@ public sealed class MultiHandedItemSystem : EntitySystem private void OnAttemptPickup(Entity ent, ref GettingPickedUpAttemptEvent args) { - if (_hands.CountFreeHands(ent.Owner) >= ent.Comp.HandsNeeded) + if (_hands.CountFreeHands(args.User) >= ent.Comp.HandsNeeded) return; args.Cancel();