[Forge, 1.19.2, Create 0.5.1.f, Additions 1.2.3] Seed Oil Doesn't Work in KubeJS Recipes, Possible Fluid Registration Issues
MadSciSlack opened this issue ยท 0 comments
KubeJS cannot locate the fluid createadditions:seed_oil when referenced in recipes. It behaves like the fluid is not registered properly.
I've brought this to the KJS support, and we've verified that the script should work. Based on their analysis and testing, it seems like createaddition doesn't properly add the fluid. They've suggested that I bring this to you as a bug.
I've pasted the script and the server's response to it below. The first 2 recipes work fine. The last one does not.
Cheers,
Slack.
event.recipes.create.mixing([Fluid.of('pneumaticcraft:biodiesel', 50), Item.of('pneumaticcraft:glycerol')], [Fluid.of('pneumaticcraft:ethanol', 25), Fluid.of('gourmet:seed_oil', 25)]) //Works fine
event.recipes.create.mixing([Fluid.of('pneumaticcraft:biodiesel', 50), Item.of('pneumaticcraft:glycerol')], [Fluid.of('pneumaticcraft:ethanol', 25), Fluid.of('pneumaticcraft:vegetable_oil', 25)]) //Works fine
event.recipes.create.mixing([Fluid.of('pneumaticcraft:biodiesel', 50), Item.of('pneumaticcraft:glycerol')], [Fluid.of('pneumaticcraft:ethanol', 25), Fluid.of('createadditon:seed_oil', 25)]) //The one that isn't working.