SPIGOT-3425: Correct slot type calculation

This commit is contained in:
md_5 2017-07-16 11:03:19 +10:00
parent b5df1f59f7
commit 70be90e168

View File

@ -133,7 +133,7 @@ public class CraftInventoryView extends InventoryView {
} else if (slot > 35) { } else if (slot > 35) {
type = SlotType.QUICKBAR; type = SlotType.QUICKBAR;
} }
} else if (slot >= (inventory.countSlots() - 9)) { } else if (slot >= (inventory.countSlots() - (9 + 4 + 1))) { // Quickbar, Armor, Offhand
type = SlotType.QUICKBAR; type = SlotType.QUICKBAR;
} }
} }