Skip to content

Commit

Permalink
Decreased stone cost
Browse files Browse the repository at this point in the history
  • Loading branch information
Litorom committed Aug 29, 2024
1 parent 321b842 commit ae6ee34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/java/minicraft/item/Recipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class Recipes {
workbenchRecipes.add(new Recipe("Anvil_1", "iron_5"));
workbenchRecipes.add(new Recipe("Tnt_1", "Gunpowder_10", "Sand_8"));
workbenchRecipes.add(new Recipe("Loom_1", "Wood_10", "White Wool_5"));
workbenchRecipes.add(new Recipe("Dye Vat_1", "Stone_20", "Water Bucket_1"));
workbenchRecipes.add(new Recipe("Dye Vat_1", "Stone_10", "Water Bucket_1"));
workbenchRecipes.add(new Recipe("Wood Fishing Rod_1", "Wood_10", "String_3"));
workbenchRecipes.add(new Recipe("Iron Fishing Rod_1", "Iron_10", "String_3"));
workbenchRecipes.add(new Recipe("Gold Fishing Rod_1", "Gold_10", "String_3"));
Expand Down
2 changes: 1 addition & 1 deletion src/client/resources/resources/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@
}
},
"rewards": {"recipes": {"Dye Vat_1": [
"Stone_20",
"Stone_10",
"Water Bucket_1"
]}}
},
Expand Down

0 comments on commit ae6ee34

Please sign in to comment.