From 7c42a5d305a110c2b73900fd66a44055af1af70d Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Sat, 8 May 2021 17:19:32 -0700 Subject: [PATCH] Fix moving items dropping them on the ground for a tick --- Content.Server/GameObjects/Components/GUI/HandsComponent.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Content.Server/GameObjects/Components/GUI/HandsComponent.cs b/Content.Server/GameObjects/Components/GUI/HandsComponent.cs index 624dd60dbf..244fc0a7ff 100644 --- a/Content.Server/GameObjects/Components/GUI/HandsComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/HandsComponent.cs @@ -670,11 +670,6 @@ namespace Content.Server.GameObjects.Components.GUI else { var entity = hand.Entity; - if (!Drop(entity)) - { - break; - } - interactionSystem.Interaction(Owner, entity); } }