[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:


Machine: Windows 8.1


Attachments: PNG File c96147e0084383f5317f641cb7a5e37e.png    

 Description   

Problem:
I was trying to save and load the SkulkerBoxes BlockState from my own serialized data (foreign to Spigot) and I noticed that I was not able to modify the BlockState and thus the inventory of the ShulkerBox while it was not placed.

We'd need to override #update and save the nbt data of ShulkerBoxes to allow modification while the ShulkerBox is an item.

Possible Solution:
Upon digging, a similar problem was posed with Shields and fixed through overriding the update method here. The same strategy could be applied to ShulkerBoxes.

Thank you for reading and hopefull a quick resolving of this issue.



 Comments   
Comment by Benjamin Heusser [ 17/Nov/16 ]

More Research:
I ran the same tests against the other available containers that have BlockStateMeta.

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:
So instead, please consider the following approach. If the TileEntity is not placed within the world, rather assume that we want to edit it as a BlockState in ItemMeta and store all relevant information not involved in placement. (Such as text of a sign, patterns of the banners, inventories of Containers and so forth.)

Generated at Thu Apr 03 15:54:39 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.