oierbravo / createsifter

Create Sifter mod for Forge
MIT License
5 stars 17 forks source link

Issues with KubeJS Registration's #6

Closed ACrazyD closed 2 years ago

ACrazyD commented 2 years ago

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

1) registered recipes dont have a mesh despite having the mesh's registered 2) Unable to work out how to setup MultiOutput Arrays for recipes 3) 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'])

ACrazyD commented 2 years ago

I have the event call shorthanded to e. whatever because im lazy XD - that will not be the issue

ACrazyD commented 2 years ago

Solved - there was an unknown typo breaking futher lines... I may be a little dumb XD