mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 23:46:57 +01:00
[Bleeding] Return correct player SlotType. Fixes BUKKIT-3188
Previously, the SlotType for the last 4 slots in a player's inventory returned QUICKBAR when it should have returned SlotType.CONTAINER. This updates the code for determining slot type to return the proper value. By: GJ <gjmcferrin@gmail.com>
This commit is contained in:
parent
f94f5c576e
commit
c9d41122d1
1 changed files with 6 additions and 2 deletions
|
@ -127,8 +127,12 @@ public class CraftInventoryView extends InventoryView {
|
|||
} else {
|
||||
if (slot == -999) {
|
||||
type = SlotType.OUTSIDE;
|
||||
} else if (inventory.getType() == InventoryType.CRAFTING && slot < 9) {
|
||||
type = SlotType.ARMOR;
|
||||
} else if (inventory.getType() == InventoryType.CRAFTING) {
|
||||
if (slot < 9) {
|
||||
type = SlotType.ARMOR;
|
||||
} else if (slot > 35) {
|
||||
type = SlotType.QUICKBAR;
|
||||
}
|
||||
} else if (slot >= (inventory.countSlots() - 9)) {
|
||||
type = SlotType.QUICKBAR;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue