From 3742934bae129350d154cc7370fd87a4bc0ab6e9 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Thu, 25 Jan 2024 11:23:43 -0800 Subject: [PATCH] Fix dupe glitch that was carried over from Mechanical Sieve --- .../java/thedarkcolour/exdeorum/menu/MechanicalSieveMenu.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/thedarkcolour/exdeorum/menu/MechanicalSieveMenu.java b/src/main/java/thedarkcolour/exdeorum/menu/MechanicalSieveMenu.java index 069ee579..79bee067 100644 --- a/src/main/java/thedarkcolour/exdeorum/menu/MechanicalSieveMenu.java +++ b/src/main/java/thedarkcolour/exdeorum/menu/MechanicalSieveMenu.java @@ -61,7 +61,7 @@ public class MechanicalSieveMenu extends AbstractMachineMenu 1 && clickedSlot <= NUM_SLOTS) { // moving out of output slots + if (clickedSlot > 1 && clickedSlot < NUM_SLOTS) { // moving out of output slots if (!moveItemStackTo(clickedStack, NUM_SLOTS, PLAYER_SLOTS + NUM_SLOTS, true)) { return ItemStack.EMPTY; }