All of the code would be way too long, however I have only removed the ore processing from the vanilla furnace and maybe added a recipe nothing much anyways.
Full code for the new food.zs (the .zs that handles food, tried using the slag furnace which does work but seems unsavory):
recipes.remove(<minecraft
umpkin_pie>);
recipes.remove(<minecraft:bread>);
mods.factorization.Lacerator.addRecipe(<minecraft:wheat>, <Quadrum:flour>, 1);
recipes.addShapeless(<minecraft
umpkin_pie>,
[<minecraft:sugar>, <minecraft:egg>, <minecraft:nether_wart>]);
recipes.addShapeless(<Quadrum:dough>,
[<minecraft
otion>, <Quadrum:flour>]);
mods.factorization.SlagFurnace.addRecipe(<Quadrum:dough>, <minecraft:bread>, 1, <factorization:sludge>, 1); <--- this would be where "furnace.addRecipe(<Quadrum:dough>, <minecraft:bread>);" should be
edit : haha all the
were of course : P