From aeeabe90ee3b372fcf52c04c2c3c39ed5819c497 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 12 Mar 2023 14:42:05 +0700 Subject: [PATCH] Tritanium plates as shield ingredient --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt index a2719b6cb..ad428b70c 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt @@ -267,9 +267,9 @@ fun addCraftingTableRecipes(consumer: Consumer) { .build(consumer) MatteryRecipe(MItems.TRITANIUM_SHIELD, category = RecipeCategory.COMBAT) - .row(MItemTags.TRITANIUM_INGOTS, Items.SHIELD, MItemTags.TRITANIUM_INGOTS) - .row(MItemTags.TRITANIUM_INGOTS, MItemTags.TRITANIUM_INGOTS, MItemTags.TRITANIUM_INGOTS) - .rowB(MItemTags.TRITANIUM_INGOTS) + .row(MItemTags.TRITANIUM_PLATES, Items.SHIELD, MItemTags.TRITANIUM_PLATES) + .row(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) + .rowB(MItemTags.TRITANIUM_PLATES) .build(consumer) ShapelessRecipeBuilder(RecipeCategory.MISC, MItems.TRITANIUM_NUGGET, 9)