Skip to content

Commit

Permalink
fix: Fix shift-clicking in auto sieve not filling last hotbar slot #342
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Jun 30, 2024
1 parent 4b55ad3 commit de38483
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public ItemStack quickMoveStack(Player player, int slotNumber) {
ItemStack slotStack = slot.getItem();
itemStack = slotStack.copy();
if (slotNumber <= 21) {
if (!moveItemStackTo(slotStack, 22, 57, true)) {
if (!moveItemStackTo(slotStack, 22, 58, true)) {
return ItemStack.EMPTY;
}
} else if (autoSieve.getBackingContainer().canPlaceItem(0, slotStack)) {
Expand Down

0 comments on commit de38483

Please sign in to comment.