Enigmatica 2: Expert - E2E

Enigmatica 2: Expert - E2E

2M Downloads

Precision sawmill creates sawdust from different mods depending on recipe

complover116 opened this issue ยท 4 comments

commented

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!

commented

Thank you for the report, I will investigate the issue.

commented

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.

commented

@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.

commented

Thanks for clearing that up ๐Ÿ‘