Fix dupe glitch that was carried over from Mechanical Sieve

This commit is contained in:
thedarkcolour 2024-01-25 11:23:43 -08:00
parent e34894bdf5
commit 3742934bae

View File

@ -61,7 +61,7 @@ public class MechanicalSieveMenu extends AbstractMachineMenu<MechanicalSieveBloc
var clickedStack = slot.getItem();
stack = clickedStack.copy();
if (clickedSlot > 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;
}