From 5d86b4161b55b1b458b56017e6bb6d8b3b031c59 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Tue, 5 Apr 2022 16:35:25 +0100 Subject: [PATCH] Fixed closing the GUI dropping items on ground --- .../src/main/kotlin/com/willfp/reforges/gui/ReforgeGUI.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/reforges/gui/ReforgeGUI.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/reforges/gui/ReforgeGUI.kt index ee505d5..af4e578 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/reforges/gui/ReforgeGUI.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/reforges/gui/ReforgeGUI.kt @@ -186,6 +186,7 @@ object ReforgeGUI { DropQueue(event.player as Player) .addItems(menu.getCaptiveItems(event.player as Player)) .setLocation(event.player.eyeLocation) + .forceTelekinesis() .push() } }