Doesn't Make the Wand
Venom5327 opened this issue · 3 comments
On the current version (1.21.4) when I throw the ender pearl on the crying obsidian it does not make the wand. It says destination chosen etc, but it doesn't actually drop the wand.
I tried to update from a 1.21.2 to an 1.21.4 fabric server and had the same issue.
I tried switching to the datapack and still I had an error message whilst starting the own-hosted server.
Breaking the error down lead me to the newest overload of the portal-wand.json which had an error.
The error was caused because some components in the set_components function were defined with raw primitive values (such as a number or a boolean) instead of the expected object structure.
However, Minecraft now expects each component to be a full JSON object with a value or data field.
The correct structure would be:
Changing the structure from
"minecraft:custom_model_data": 205001
to
"minecraft:custom_model_data": {
"value": 205001
}
should resolve the error.