From 31b1023c6efb8dc9d743a035f20d58ee7cb17c3c Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Wed, 13 Mar 2024 22:24:18 -0700 Subject: [PATCH] Fix dupe glitch that was carried over from Mechanical Sieve --- .../exdeorum/blockentity/MechanicalHammerMenu.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/thedarkcolour/exdeorum/blockentity/MechanicalHammerMenu.java b/src/main/java/thedarkcolour/exdeorum/blockentity/MechanicalHammerMenu.java index c7dfa2c2..5657453d 100644 --- a/src/main/java/thedarkcolour/exdeorum/blockentity/MechanicalHammerMenu.java +++ b/src/main/java/thedarkcolour/exdeorum/blockentity/MechanicalHammerMenu.java @@ -62,7 +62,7 @@ public class MechanicalHammerMenu 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; }