Skip to content

Commit

Permalink
feat(1.20.1-forged): recipes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlimiter committed May 25, 2024
1 parent 94418ba commit 93a508a
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
18 changes: 9 additions & 9 deletions src/generated/resources/data/avaritia/recipes/infinity_axe.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
}
},
"pattern": [
" I ",
" IIIII",
" IIXI ",
" IN ",
" N ",
" N ",
" N ",
" N ",
" N "
" I",
" IIIII ",
" IIXI ",
" IN ",
" N ",
" N ",
" N ",
" N ",
"N "
],
"result": {
"item": "avaritia:infinity_axe"
Expand Down
18 changes: 9 additions & 9 deletions src/generated/resources/data/avaritia/recipes/infinity_hoe.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
}
},
"pattern": [
" N ",
" IIII",
" IIIII",
" I XI",
" N ",
" N ",
" N ",
" N ",
" N "
" N",
" IIII",
" IIIII ",
" II XI ",
" N ",
" N ",
" N ",
" N ",
"N "
],
"result": {
"item": "avaritia:infinity_hoe"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,31 +187,31 @@ protected void buildRecipes(@NotNull Consumer<FinishedRecipe> consumer) {
.unlockedBy("has_item", has(ModItems.neutron_ingot.get())).save(consumer);

ModShapedRecipeBuilder.shaped(RecipeCategory.TOOLS, ModItems.infinity_axe.get())
.pattern(" I ")
.pattern(" IIIII")
.pattern(" IIXI ")
.pattern(" IN ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" I")
.pattern(" IIIII ")
.pattern(" IIXI ")
.pattern(" IN ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern("N ")
.define('I', ModItems.infinity_ingot.get())
.define('N', ModItems.neutron_ingot.get())
.define('X', ModItems.infinity_catalyst.get())
.showNotification(true)
.unlockedBy("has_item", has(ModItems.infinity_ingot.get())).save(consumer);

ModShapedRecipeBuilder.shaped(RecipeCategory.TOOLS, ModItems.infinity_hoe.get())
.pattern(" N ")
.pattern(" IIII")
.pattern(" IIIII")
.pattern(" I XI")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N")
.pattern(" IIII")
.pattern(" IIIII ")
.pattern(" II XI ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern(" N ")
.pattern("N ")
.define('I', ModItems.infinity_ingot.get())
.define('N', ModItems.neutron_ingot.get())
.define('X', ModItems.infinity_catalyst.get())
Expand Down

0 comments on commit 93a508a

Please sign in to comment.