[SPIGOT-2778] CraftShulkerBox doesn't override update() Created: 17/Nov/16 Updated: 17/Nov/16 Resolved: 17/Nov/16 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | Benjamin Heusser | Assignee: | Unassigned |
Resolution: | Duplicate | Votes: | 1 |
Labels: | Craftbukkit, entity, nbt | ||
Environment: |
|
Attachments: |
![]() |
Description |
Problem: We'd need to override #update and save the nbt data of ShulkerBoxes to allow modification while the ShulkerBox is an item. Possible Solution: Thank you for reading and hopefull a quick resolving of this issue. |
Comments |
Comment by Benjamin Heusser [ 17/Nov/16 ] |
More Research: Strange enough, chests, furnaces and hoppers don't need to be updated to set the correct contents of their respective inventory. I can very well read all the content from the ItemMeta and write it back like so BlockState ret; Inventory inventory; try { ret = blockStateMeta.getBlockState(); if (!(ret instanceof InventoryHolder)) return; inventory = ((InventoryHolder)ret).getInventory(); } catch (Exception e) { // Catch errors such as: throw new IllegalStateException("Missing blockState for " + material); return; } // Apply for (ItemStack itemStack : storedInventory) { if (itemStack == null || itemStack.getType() == Material.AIR) continue; inventory.addItem(itemStack); } // Set blockStateMeta.setBlockState(ret); But the other ones (shulkerboxes, brewingstands, droppers) don't update their contents in doing so. Conclussion: |