Sawmill giving specific output for ALL logs using custom recipe
ElectroBot opened this issue ยท 2 comments
Minecraft: 1.12.2
Forge: 14.23.4.2768
TechReborn: 2.17.3.828
RebornCore: 3.10.0.337
When using this mods.techreborn.industrialSawmill.addRecipe(<minecraft:planks> *4, <techreborn:dust:46> *2, null, <minecraft:log:0>, <liquid:water> *100, 100, 128);
it cycles through all log types as possible input even when sawmill recipes config is disabled.
Seems similar to this bug: #1602
please try using .setUseOreDict(false)
Your example would then become:
mods.techreborn.industrialSawmill.addRecipe(<minecraft:planks> *4, <techreborn:dust:46> *2, null, <minecraft:log:0>, <liquid:water> *100, 100, 128).setUseOreDict(false);