Skip to content

Commit

Permalink
Move disabled slots out of the way (#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
viciscat authored Feb 27, 2025
1 parent f1c37e8 commit 97a36bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public SkyblockCraftingTableScreenHandler(ScreenHandlerType<?> type, int syncId,
slot.id = i;
slots.set(i, slot);
} else {
DisabledSlot slot = new DisabledSlot(originalSlot.inventory, originalSlot.getIndex(), originalSlot.x, originalSlot.y);
DisabledSlot slot = new DisabledSlot(originalSlot.inventory, originalSlot.getIndex(), -20, -20);
slot.id = i;
slots.set(i, slot);
}
Expand Down

0 comments on commit 97a36bd

Please sign in to comment.