From c4e42bcc34271036f58663561d9cef9adab26a09 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 2 Oct 2022 01:16:47 +0700 Subject: [PATCH] Make door recipe craft 3 of them --- .../dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9d8529546..a92649d74 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 @@ -43,7 +43,7 @@ fun addCraftingTableRecipes(consumer: Consumer) { .unlockedBy("has_chest", has(Tags.Items.CHESTS)) .save(consumer) - MatteryRecipe(MBlocks.TRITANIUM_DOOR) + MatteryRecipe(MBlocks.TRITANIUM_DOOR, 3) .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES) .rowAB(MItemTags.TRITANIUM_PLATES, MItemTags.TRITANIUM_PLATES)