mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-26 01:32:02 -07:00
SPIGOT-4891: LecternInventory.getType() should return InventoryType.LECTERN
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user