Only half of my custom recipes load.
jsaggers opened this issue ยท 1 comments
I am having a problem where only about half of the recipes I have created will load, all vanilla items.
I have been using this script for longer than I can remember. I have been over and over every line in the script many times.
Is there a certain version of Crafttweaker, JEI and forge that I should be using?
The minetweaker.log file says everything has loaded.
I do have multiple .zs files which I have been doing for years, would that affect it.
Here is one that works.
//Saddle
recipes.addShaped(minecraft:saddle,
[[minecraft:leather, minecraft:leather, minecraft:leather],
[minecraft:leather, minecraft:iron_ingot, minecraft:leather],
[minecraft:string, null, minecraft:string]]);
And here is one that doesn't
//Iron Horse Armour
recipes.addShaped(minecraft:iron_horse_armor,
[[null, null, minecraft:iron_ingot],
[minecraft:iron_ingot, ore:blockWool, minecraft:iron_ingot],
[minecraft:iron_ingot, minecraft:iron_ingot, minecraft:iron_ingot]]);
This all use to work about a month ago. This is 1.10.2 by the way.
I have tried many different versions of JEI and Crafttweaker. I even tried disabling all of the mods except for JEI and Crafttweaker with no luck.
I feal like a tool.
I must have had a mod installed that added extra data to a lot of blocks.
In the iron horse armor above the ore:blockWool doesn't exist, it should be minecraft:wool:* which now works fine.
Can't seem to figure out what mod it was but everything is fine now.
Sorry about that...