Skip to content

Commit

Permalink
Merge pull request #550 from ferriarnus/crystalrecipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rover656 committed Nov 11, 2023
2 parents 8840526 + 13bc105 commit 8dbeb9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tag": "forge:gems/diamond"
},
"P": {
"tag": "forge:ingots/pulsating_alloy"
"tag": "forge:nuggets/pulsating_alloy"
}
},
"pattern": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tag": "forge:gems/emerald"
},
"P": {
"tag": "forge:ingots/vibrant_alloy"
"tag": "forge:nuggets/vibrant_alloy"
}
},
"pattern": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private void addCrystals(Consumer<FinishedRecipe> recipeConsumer) {
.pattern("PPP")
.pattern("PDP")
.pattern("PPP")
.define('P', EIOTags.Items.INGOTS_PULSATING_ALLOY)
.define('P', EIOTags.Items.NUGGETS_PULSATING_ALLOY)
.define('D', Tags.Items.GEMS_DIAMOND)
.unlockedBy("has_ingredient", InventoryChangeTrigger.TriggerInstance.hasItems(EIOItems.PULSATING_ALLOY_NUGGET.get()))
.save(recipeConsumer);
Expand All @@ -239,7 +239,7 @@ private void addCrystals(Consumer<FinishedRecipe> recipeConsumer) {
.pattern("PPP")
.pattern("PDP")
.pattern("PPP")
.define('P', EIOTags.Items.INGOTS_VIBRANT_ALLOY)
.define('P', EIOTags.Items.NUGGETS_VIBRANT_ALLOY)
.define('D', Tags.Items.GEMS_EMERALD)
.unlockedBy("has_ingredient", InventoryChangeTrigger.TriggerInstance.hasItems(EIOItems.VIBRANT_ALLOY_NUGGET.get()))
.save(recipeConsumer);
Expand Down

0 comments on commit 8dbeb9e

Please sign in to comment.