item.itemId = itemId;
item.worldPosition = ServerValues.getClientCoords(x, y, z);
item.stackable = stackable;
item.count = count;
ItemModel i = new ItemModel(item);
i.attachVisuals();
Singleton.get().getNavManager().snapToGround(item.worldPosition);
ent.setLocalTranslation(item.worldPosition);
ent.setName(i.getName());
ent.attachChild(i);
Singleton.get().getSceneManager().changeItemNode(ent,Action.ADD);
}