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();