Recipes not being display with newest version
SaphieNyako opened this issue · 16 comments
version: jei-1.16.5-7.7.1.122.jar
Since the new update recipes are not being displayed of multiple mods.
Examples are:
feywild - dwarven anvil, altar
botania - elven trades, mana infusion
create - alot of recipes
Recipes from token enchanting are broken in 1.17.1 (37.0.82) with jei-1.17.1-8.1.0.21.
The change:
JustEnoughItems/src/main/java/mezz/jei/recipes/RecipeManagerInternal.java
Lines 117 to 121 in eaeff62
Which leads to here:
The problem is that the majority of modders have set their custom recipe types to return true from isSpecial
, because the recipe book emits a log message for every single recipe it does not known how to handle (see ClientRecipeBook#getCategory
).
@Override
default boolean isSpecial() {
return false;
}
Setting it false fixed it.
Thanks.
Thanks for the report!
Hubry's assessment is correct.
This should be fixed in the next version.
If your goal is just fixing this in your mod, overriding isHandled
in your JEI category will fix this without the sideeffect of recipe book log spam.
I had to go back to jei-1.16.5-7.7.1.119 before it worked correctly. Mekanism recipes were missing. I'm sure others as well.
Can confirm. Like Immersive Engineering's Coke Oven or multiblocks in general.
Cheers
Please try with
jei-1.16.5-7.7.1.125
There are still missing recipes in this version
Can you please give specific information about which recipes are missing, and from which mods?
Can you please give specific information about which recipes are missing, and from which mods?
Of the mods I use it's all non-vanilla methods from tinkers except for casting. As well as all non-vanilla methods from thermal expansion, mekanism, astral sorcery, botania, resourceful bees, mystical agriculture, and draconic evolution.
Are you using the most recent version of Tinker's as well?
It seems related to this issue, which they marked as resolved with JEI's update: SlimeKnights/TinkersConstruct#4636
If you still get the issue with the latest JEI and Tinker's, please link a client log here and I can take a look.
Are you using the most recent version of Tinker's as well? It seems related to this issue, which they marked as resolved with JEI's update: SlimeKnights/TinkersConstruct#4636
If you still get the issue with the latest JEI and Tinker's, please link a client log here and I can take a look.
Turns out I didn't have the right version of JEI