SOLVED(WorkAround):1.0.1: Direwolf20 1.7.10 Cake Crafting Bug FIX HERE

Zephyr_

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

What is the bug:
If you look at the recipe for cake, the milk buckets are replaced with broken textures which are named "Milk". I THINK its a conflict with MFR fluid registry Milk as a regular liquid.

Mod & Version:None


Paste.feed-the-beast.com log:None


Can it be repeated:
Yes, its a recipe bug. Go into NEI and look up the recipe for cake or try to craft cake.

Known Fix: Go into config and go into powercrystals, then minefactoryreloaded. go down until you see
# If true, replaces the vanilla milk bucket so milk can be placed in the world.
B:MilkBucket=true
Change this to false...But it will remove milk from being able to be placed
 
Last edited:
  • Like
Reactions: MysteriusDragon

It_IS_Lupus

New Member
Jul 29, 2019
74
0
0
If you want to be able to place milk you could always pipe the milk and ingredients into a thermal expansion cyclic assembler.
 

Adarcer

New Member
Jul 29, 2019
12
0
0
This is not a fix its a work around... This is fixable thro minetweaker the problem seems to be the recipe is useing MFR placable milk when it should be useing a "custom" oredict.milk populated with bottled milk, milk buckets, milk florbs, basically anything milk in pack..
 

Zephyr_

New Member
Jul 29, 2019
15
0
0
This is not a fix its a work around... This is fixable thro minetweaker the problem seems to be the recipe is useing MFR placable milk when it should be useing a "custom" oredict.milk populated with bottled milk, milk buckets, milk florbs, basically anything milk in pack..
Ok its a "workaround" i can change that momentarily
 

varno

New Member
Jul 29, 2019
2
0
0
Here is a minetweaeker script that is a fix

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]]);