Skip to content

Commit

Permalink
fix: swap flak jacket recipes to match the old versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Jul 23, 2022
1 parent 52a247b commit d8954e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/sekwah/narutomod/datagen/RecipeGen.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ protected void buildCraftingRecipes(Consumer<FinishedRecipe> recipeConsumer) {
.unlockedBy("has_naruto_armor_plate", has(NarutoItems.ARMOR_PLATE.get()))
.save(recipeConsumer);

ShapedRecipeBuilder.shaped(NarutoItems.FLAK_JACKET_NEW.get(), 1)
ShapedRecipeBuilder.shaped(NarutoItems.FLAK_JACKET.get(), 1)
.define('A', NarutoItems.ARMOR_PLATE_GREEN.get())
.pattern("A A")
.pattern("AAA")
.pattern("AAA")
.unlockedBy("has_naruto_armor_plate_green", has(NarutoItems.ARMOR_PLATE_GREEN.get()))
.save(recipeConsumer);

ShapedRecipeBuilder.shaped(NarutoItems.FLAK_JACKET.get(), 1)
ShapedRecipeBuilder.shaped(NarutoItems.FLAK_JACKET_NEW.get(), 1)
.define('F', NarutoItems.FABRIC_REINFORCED_GREEN.get())
.pattern("F F")
.pattern("FFF")
Expand Down

0 comments on commit d8954e0

Please sign in to comment.