diff --git a/Common/src/main/java/com/almostreliable/unified/unification/recipe/RecipeLink.java b/Common/src/main/java/com/almostreliable/unified/unification/recipe/RecipeLink.java index b22c144..42fa990 100644 --- a/Common/src/main/java/com/almostreliable/unified/unification/recipe/RecipeLink.java +++ b/Common/src/main/java/com/almostreliable/unified/unification/recipe/RecipeLink.java @@ -27,7 +27,7 @@ public class RecipeLink implements RecipeData { this.originalRecipe = originalRecipe; try { - this.type = ResourceLocation.tryParse(originalRecipe.get("type").getAsString()); + this.type = ResourceLocation.parse(originalRecipe.get("type").getAsString()); } catch (Exception e) { throw new IllegalArgumentException("could not detect recipe type"); }