Elecs-Mods / CraftingTable-IV

CraftingTable IV mod, the successor of the CraftingTable III mod from MC1.2.5
12 stars 4 forks source link

Recipes added via crafttweaker still do not work at all #103

Open Pseudonomenclature opened 1 year ago

Pseudonomenclature commented 1 year ago

I saw that there was another closed report of this issue but it still seems to persist. I tried adding the following crafttweaker script as a test, but the recipe does not show up no matter what is in my inventory: recipes.addShapeless(<minecraft:bread>, [<minecraft:apple>]); I also tried making a shaped recipe: recipes.addShaped(<minecraft:bread>, [[<minecraft:apple>, <minecraft:apple>, <minecraft:apple>]]);

However, neither seems to show up in the Crafting Table IV. This remains true even after several restarts and new world generations.

I even tried to create a recipe for an item that doesn't even have one beforehand (Enchanted Golden Apple) but it also made no difference.

xJon commented 2 months ago

I can confirm this is still an issue in version 1.5.123

Elec332 commented 2 months ago

I see what happened here, as this used to work.

CraftTweaker moved to their own custom implementation if IRecipe, like https://github.com/CraftTweaker/CraftTweaker/blob/1.12/CraftTweaker2-MC1120-Main/src/main/java/crafttweaker/mc1120/recipes/MCRecipeShaped.java

This means it will need a compat module now.