An Unexpected error occurred trying to execute command
sprocketaudio opened this issue ยท 0 comments
When trying to locate custom ore veins using KubeJS to remove all default veins then add some of my own, often I get this error when running COE locate. If I change the spacing and separation values different veins will work, but others will fail in this way. I thought if salt was different they would place in different places?
What am I doing wrong please?
The below is me running locate for all 4 of these veins and 2 dont work!
//Add veins
event.recipes.createoreexcavation.vein('{"text": "My Redstone vein"}', 'minecraft:redstone')
.placement(5, 2, 6482514)
.id("kubejs:my_redstone_vein")
event.recipes.createoreexcavation.vein('{"text": "My Coal vein"}', 'minecraft:coal')
.placement(5, 2, 7384612)
.id("kubejs:my_coal_vein")
event.recipes.createoreexcavation.vein('{"text": "My Iron vein"}', 'minecraft:raw_iron')
.placement(5, 2, 8513945)
.id("kubejs:my_iron_vein")
event.recipes.createoreexcavation.vein('{"text": "My Gold vein"}', 'minecraft:raw_gold')
.placement(5, 2, 7490023)
.id("kubejs:my_gold_vein")