Issues with KubeJS Registration's
ACrazyD opened this issue ยท 2 comments
Im attempting to register a few new mesh's and recipes
MC Version: 1.18.2
Mod Version: 1.2.3.e
KubeJS Version: 1802.5.5-build.550
- registered recipes dont have a mesh despite having the mesh's registered
- Unable to work out how to setup MultiOutput Arrays for recipes
- Do you have a discord so i dont need to make an issue on Github for something im probs just doing wrong XD
Startup Script Snip
e.create('mana_mesh','createsifter:mesh').displayName("Mana Mesh"); //CreateMesh e.create('blood_mesh','createsifter:mesh').displayName("Blood Mesh"); //CreateMesh
Server Script Snip
e.recipes.createsifterSifting([Item.of('botania:white_petal').withChance(0.5)], ['kubejs:flower_pile','kubejs:mana_mesh']) e.recipes.createsifterSifting([Item.of('botania:orange_petal').withChance(0.5)], ['kubejs:flower_pile','kubejs:mana_mesh']) e.recipes.createsifterSifting([Item.of('botania:magenta_petal').withChance(0.5)], ['kubejs:flower_pile','kubejs:mana_mesh'])
I have the event call shorthanded to e. whatever because im lazy XD - that will not be the issue