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

SPIGOT-4929: Beacon inventory getType() returns CHEST

Dieser Commit ist enthalten in:
md_5 2019-05-14 21:31:49 +10:00
Ursprung 89c52b7b0e
Commit dd99c5bb44

Datei anzeigen

@ -469,7 +469,7 @@ public class CraftInventory implements Inventory {
return InventoryType.ENDER_CHEST;
} else if (inventory instanceof InventoryMerchant) {
return InventoryType.MERCHANT;
} else if (inventory instanceof TileEntityBeacon) {
} else if (this instanceof CraftInventoryBeacon) {
return InventoryType.BEACON;
} else if (this instanceof CraftInventoryAnvil) {
return InventoryType.ANVIL;