1.0.1: Cake Bug Minetweeker Fix

  • This section is closed. Please do bug reports over at the FTB GitHub repos.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

varno

New Member
Jul 29, 2019
2
0
0
Version:
1.0.1

What is the bug:
Cakes cannot be crafted due to a bug in recipe, due in part to ore MFR.

Mod & Version:


Paste.feed-the-beast.com log:


Can it be repeated:
Yes extensively.

Known Fix:
Minetweeker script:

val milk = <ore:listAllmilk>;
val sugar = <minecraft:sugar>;
val egg = <minecraft:egg>;
val flour = <Natura:barleyFood:2>;
val wheat = <ore:itemWheat>;

val cake = <minecraft:cake>;

recipes.remove(cake);
recipes.addShaped(cake, [[milk, milk, milk],[sugar, egg, sugar],[wheat, wheat, wheat]]);
recipes.addShaped(cake, [[milk, milk, milk],[sugar, egg, sugar],[null, flour, null]]);