3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-3425: Correct slot type calculation

Dieser Commit ist enthalten in:
md_5 2017-07-16 11:03:19 +10:00
Ursprung b5df1f59f7
Commit 70be90e168

Datei anzeigen

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