Skip to content

Commit

Permalink
move disabled slots out of the way
Browse files Browse the repository at this point in the history
  • Loading branch information
viciscat committed Jan 11, 2025
1 parent ac94594 commit a4d01f9
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 a4d01f9

Please sign in to comment.