diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index dcbe9a7f81..b0bb13b90c 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -272,6 +272,12 @@ public sealed class WieldableSystem : EntitySystem private void OnVirtualItemDeleted(EntityUid uid, WieldableComponent component, VirtualItemDeletedEvent args) { + // WD edit + if (component.ForceTwoHanded && TryComp(args.User, out var handsComponent)) + { + _handsSystem.TryDrop(args.User, uid, Transform(args.User).Coordinates, false, true, handsComponent); + } + if (args.BlockingEntity == uid && component.Wielded) TryUnwield(args.BlockingEntity, component, args.User); }