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)