diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index d87d195122..8d3a03dd15 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -67,10 +67,6 @@ public abstract partial class SharedHandsSystem if (checkActionBlocker && !_actionBlocker.CanDrop(uid)) return false; - // WD edit - if (HasComp(hand.HeldEntity) && TryComp(uid, out var sharedPullerComponent) && sharedPullerComponent.Pulling == null) - return false; - return true; }