Precision sawmill creates sawdust from different mods depending on recipe
complover116 opened this issue ยท 4 comments
Modpack version
1.82a
Issue
Cutting logs in a Mekanism Precision Sawmill gives Sawdust from Thermal Foundation.
Cutting planks into sticks, however, gives Sawdust from Mekanism.
Thank you for the pack!
Cutting planks into sticks, however, gives Sawdust from Mekanism.
This could would be fixed in my next PR (probably in next month).
Or Niller can pull this lines.
@NillerMedDild You commited straight with scripts.wrap.[..]
scripts.wrap
is wrapper file im using for wrapping machine methods to output additional information.
You should use plain mods.
, so lines would be
mods.mekanism.sawmill.removeRecipe(<ore:plankWood>);
mods.mekanism.sawmill.removeRecipe(<ore:slabWood>);
mods.mekanism.sawmill.addRecipe(<ore:stickWood>, <thermalfoundation:material:800>);
mods.mekanism.sawmill.addRecipe(<ore:plankWood>, <minecraft:stick> * 6, <thermalfoundation:material:800>, 0.25d);
mods.mekanism.sawmill.addRecipe(<ore:slabWood> , <minecraft:stick> * 3, <thermalfoundation:material:800>, 0.25d / 2.0d);
I forgot to mention that.