Hi ^^
How can i spawn ( or transfer ) a item inside a chest stand near the spawn block ?
-----------------
##CC
##CC
# = my block that spawns the item
C = the chest
At the moment i spawn the item like this in world :
---
Entity entity = new EntityItem(world, x, y + 1, z,new ItemStack(MoonTools.sparkledust));
world.spawnEntityInWorld(entity);
---
How can i place the "sparkledust" inside the chest ? Any idea with code maybe ^^ ?