You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This exception is thrown when reloading the plugin, and when a player joins.
This issue seems to be related to a bug where crafting recipes do not work at all, even if the recipe isn't unlocked.
This error seems to be caused in ElementalFoods.java at line 72, the conditions to reach this error are as follows:
At least one custom item is defined in the config
unlock-recipes-on-join is set to true
The custom item has a crafting-recipe section in the config
The crafting recipe is not null (ci.recipe null check exists on line 68)
The recipe has show-in-recipe-list undefined or set to true.
The NamespacedKey of the crafting recipe is null (ci.recipeKey is referenced on line 72)
Potential Causes:
At CustomRecipe.java line 28: NamespacedKey.fromString() fails silently.
At CustomItem.java line 252: this line is not executing.
At ElementalFoods.java line 331: this line is not executing.
Lines 343 to 351 are also not executing.
The text was updated successfully, but these errors were encountered:
This exception is thrown when reloading the plugin, and when a player joins.
This issue seems to be related to a bug where crafting recipes do not work at all, even if the recipe isn't unlocked.
This error seems to be caused in ElementalFoods.java at line 72, the conditions to reach this error are as follows:
unlock-recipes-on-join
is set to truecrafting-recipe
section in the configci.recipe
null check exists on line 68)show-in-recipe-list
undefined or set to true.NamespacedKey
of the crafting recipe is null (ci.recipeKey
is referenced on line 72)Potential Causes:
NamespacedKey.fromString()
fails silently.The text was updated successfully, but these errors were encountered: