Hello,
So I was doing some tests.
Performing
val g = GroundItem.dropped(...)
player.world.spawn(g)
Does not show anything in the world
But doing
val g = GroundItem.create(...)
player.world.spawn(g)
Does show the items in the world.
I think this is an issue, or are we only supposed to run GroundItem.create when we want an item to be visible?