SPIGOT-3110: SHULKER_BOX InventoryType

This commit is contained in:
md_5 2017-03-08 17:56:08 +11:00
parent 7a7c64714e
commit 4316a8c246
2 changed files with 10 additions and 0 deletions

View File

@ -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!");

View File

@ -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;
}