Skip to content

Commit

Permalink
fix: silver ingot smelting recipe using raw tin instead of raw silver
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTJP committed Mar 23, 2024
1 parent 295d86f commit c5bb183
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"cookingtime": 200,
"experience": 0.7,
"ingredient": {
"item": "projectred_exploration:raw_tin"
"item": "projectred_exploration:raw_silver"
},
"result": {
"item": "projectred_exploration:silver_ingot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected void registerRecipes() {
oreSmeltingRecipe(PERIDOT_ITEM.get(), List.of(PERIDOT_ORE_BLOCK.get(), DEEPSLATE_PERIDOT_ORE_BLOCK.get()), 1F);
oreSmeltingRecipe(ELECTROTINE_DUST_ITEM.get(), List.of(ELECTROTINE_ORE_BLOCK.get(), DEEPSLATE_ELECTROTINE_ORE_BLOCK.get()), 0.7F);
oreSmeltingRecipe(TIN_INGOT_ITEM.get(), List.of(TIN_ORE_BLOCK.get(), DEEPSLATE_TIN_ORE_BLOCK.get(), RAW_TIN_ITEM.get()), 0.7F);
oreSmeltingRecipe(SILVER_INGOT_ITEM.get(), List.of(SILVER_ORE_BLOCK.get(), DEEPSLATE_SILVER_ORE_BLOCK.get(), RAW_TIN_ITEM.get()), 0.7F);
oreSmeltingRecipe(SILVER_INGOT_ITEM.get(), List.of(SILVER_ORE_BLOCK.get(), DEEPSLATE_SILVER_ORE_BLOCK.get(), RAW_SILVER_ITEM.get()), 0.7F);

// Decorative blocks
smelting(BASALT_BLOCK.get())
Expand Down

0 comments on commit c5bb183

Please sign in to comment.