diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index b3f5e4c8c4..74401ee403 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -90,7 +90,7 @@ namespace Content.Server.Hands.Systems if (TryComp(uid, out SharedPullerComponent? puller) && puller.Pulling is EntityUid pulled && TryComp(pulled, out SharedPullableComponent? pullable)) _pullingSystem.TryStopPull(pullable); - if (_handsSystem.TryDrop(uid, component.ActiveHand!, null, checkActionBlocker: false)) + if (!_handsSystem.TryDrop(uid, component.ActiveHand!, null, checkActionBlocker: false)) return; var targetName = Name(args.Target);