mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 06:50:12 +01:00
SPIGOT-4891: LecternInventory.getType() should return InventoryType.LECTERN
This commit is contained in:
parent
0036d1b753
commit
70ebefca6b
1 changed files with 1 additions and 2 deletions
|
@ -16,7 +16,6 @@ import net.minecraft.server.TileEntityBrewingStand;
|
|||
import net.minecraft.server.TileEntityDispenser;
|
||||
import net.minecraft.server.TileEntityDropper;
|
||||
import net.minecraft.server.TileEntityFurnace;
|
||||
import net.minecraft.server.TileEntityLectern;
|
||||
import net.minecraft.server.TileEntityShulkerBox;
|
||||
import net.minecraft.server.TileEntitySmoker;
|
||||
import org.apache.commons.lang.Validate;
|
||||
|
@ -480,7 +479,7 @@ public class CraftInventory implements Inventory {
|
|||
return InventoryType.SHULKER_BOX;
|
||||
} else if (inventory instanceof TileEntityBarrel) {
|
||||
return InventoryType.BARREL;
|
||||
} else if (inventory instanceof TileEntityLectern) {
|
||||
} else if (this instanceof CraftInventoryLectern) {
|
||||
return InventoryType.LECTERN;
|
||||
} else if (this instanceof CraftInventoryLoom) {
|
||||
return InventoryType.LOOM;
|
||||
|
|
Loading…
Reference in a new issue