From b402f14256687eeea8953e158a2e8b3c7a3985dd Mon Sep 17 00:00:00 2001 From: Spatison <137375981+Spatison@users.noreply.github.com> Date: Sat, 23 Nov 2024 23:47:39 +0300 Subject: [PATCH] fix --- Content.Shared/Body/Systems/SharedBodySystem.Parts.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs index aab777c91c..48fd25dcde 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Parts.cs @@ -14,6 +14,7 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Shared.Buckle; +using Content.Shared.Standing; namespace Content.Shared.Body.Systems; @@ -215,6 +216,7 @@ private void RemoveLeg(Entity legEnt, Entity Dirty(bodyEnt, bodyEnt.Comp); if (!_buckle.IsBuckled(bodyEnt)) // WD EDIT Standing.Down(bodyEnt); + RaiseLocalEvent(bodyEnt, new DropHandItemsEvent(), false); // WD EDIT } }