[SPIGOT-2997] NPE on opening shulker box inventory Created: 09/Jan/17 Updated: 23/Jan/17 Resolved: 09/Jan/17 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | toyblocks | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Labels: | 1.11, bug, craftbukkit, shulkerbox | ||
Environment: |
java version "1.8.0_101" |
Description |
Not able to open an inventory of a shulker box not placed(item stack). Sample code: Player player = /* ... */; ItemStack shulkerBox = /* ... */; BlockStateMeta meta = (BlockStateMeta) shulkerBox.getItemMeta(); ShulkerBox state = (ShulkerBox) meta.getBlockState(); player.openInventory(state.getInventory()); |
Comments |
Comment by BillyGalbreath [ 23/Jan/17 ] |
@md_5 The problem with using a fake chest inventory is shulker box items can be placed into them. Would have been much better and simpler solution to add the current world the player is in to the tile entity data, similar to how opening a fake enchanting table currently does it. |
Comment by md_5 [ 09/Jan/17 ] |
Added clear exception disallowing this behaviour. |
Comment by Black Hole [ 09/Jan/17 ] |
So you want support for opening the inventory of an unplaced shulker box? Anyway, this is a feature request, not a bug and it's far from being "Major". |