From 36c5ab551d96137054408809be389c39edad9554 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Date: Mon, 13 Dec 2021 21:47:52 +0100 Subject: [PATCH] Fix mobs not dropping items when falling down. (#5771) It checked action blockers, meaning it would never actually drop the items. --- Content.Server/Standing/StandingStateSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Standing/StandingStateSystem.cs b/Content.Server/Standing/StandingStateSystem.cs index 3db2003236..88dd64902e 100644 --- a/Content.Server/Standing/StandingStateSystem.cs +++ b/Content.Server/Standing/StandingStateSystem.cs @@ -21,7 +21,7 @@ public class StandingStateSystem : EntitySystem foreach (var heldItem in hands.GetAllHeldItems()) { - if (!hands.Drop(heldItem.Owner)) + if (!hands.Drop(heldItem.Owner, false)) continue; var worldRotation = EntityManager.GetComponent(uid).WorldRotation.ToVec();