Skip to content

Commit

Permalink
PotionWorkshopCraftingRecipes have "use_up_base_ingredient: true" as …
Browse files Browse the repository at this point in the history
…default now
  • Loading branch information
DaFuqs authored Jul 5, 2022
1 parent 41921e0 commit 112e4ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public PotionWorkshopCraftingRecipe read(Identifier identifier, JsonObject jsonO
int requiredExperience = JsonHelper.getInt(jsonObject, "required_experience", 0);
int craftingTime = JsonHelper.getInt(jsonObject, "time", 200);
int color = JsonHelper.getInt(jsonObject, "color", 0xc03058);
boolean consumeBaseIngredient = JsonHelper.getBoolean(jsonObject, "use_up_base_ingredient", false);
boolean consumeBaseIngredient = JsonHelper.getBoolean(jsonObject, "use_up_base_ingredient", true);
ItemStack output = RecipeUtils.itemStackWithNbtFromJson(JsonHelper.getObject(jsonObject, "result"));

Identifier requiredAdvancementIdentifier;
Expand Down

0 comments on commit 112e4ef

Please sign in to comment.