mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-3110: SHULKER_BOX InventoryType
This commit is contained in:
parent
7a7c64714e
commit
4316a8c246
@ -250,6 +250,13 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
||||
openCustomInventory(inventory, player, "minecraft:anvil");
|
||||
}
|
||||
break;
|
||||
case SHULKER_BOX:
|
||||
if (iinventory instanceof TileEntityShulkerBox) {
|
||||
getHandle().openTileEntity((TileEntityShulkerBox) iinventory);
|
||||
} else {
|
||||
openCustomInventory(inventory, player, "minecraft:shulker_box");
|
||||
}
|
||||
break;
|
||||
case CREATIVE:
|
||||
case CRAFTING:
|
||||
throw new IllegalArgumentException("Can't open a " + type + " inventory!");
|
||||
|
@ -15,6 +15,7 @@ import net.minecraft.server.TileEntityBrewingStand;
|
||||
import net.minecraft.server.TileEntityDispenser;
|
||||
import net.minecraft.server.TileEntityDropper;
|
||||
import net.minecraft.server.TileEntityFurnace;
|
||||
import net.minecraft.server.TileEntityShulkerBox;
|
||||
|
||||
import org.apache.commons.lang.Validate;
|
||||
import org.bukkit.Location;
|
||||
@ -462,6 +463,8 @@ public class CraftInventory implements Inventory {
|
||||
return InventoryType.ANVIL;
|
||||
} else if (inventory instanceof IHopper) {
|
||||
return InventoryType.HOPPER;
|
||||
} else if (inventory instanceof TileEntityShulkerBox) {
|
||||
return InventoryType.SHULKER_BOX;
|
||||
} else {
|
||||
return InventoryType.CHEST;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user