From b3d1db2afa509c67027bad5030eea3ddcff9b1b5 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 26 Jun 2023 19:16:17 +0700 Subject: [PATCH] Buff plate press and twin plate press recipes --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 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 d708e8627..0cf235240 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 @@ -65,15 +65,16 @@ fun addCraftingTableRecipes(consumer: Consumer) { .build(consumer) MatteryRecipe(MBlocks.PLATE_PRESS, category = machinesCategory) + .rowB(MItemTags.PISTONS) .rowB(MItems.MACHINE_FRAME) - .rowAC(MItemTags.PISTONS, MItemTags.PISTONS) .unlockedBy(MItemTags.TRITANIUM_INGOTS) .unlockedBy(MItems.ELECTRIC_PARTS) .build(consumer, "advanced") MatteryRecipe(MBlocks.TWIN_PLATE_PRESS, category = machinesCategory) .rowB(MItemTags.PISTONS) - .row(MItemTags.TRITANIUM_PLATES, MItems.PLATE_PRESS, MItemTags.TRITANIUM_PLATES) + .rowB(MItems.PLATE_PRESS) + .rowB(MItemTags.TRITANIUM_PLATES) .unlockedBy(MItems.PLATE_PRESS) .build(consumer)