From c87ec563079c18db5185cb290a9da31b79f6745c Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 10 Feb 2025 14:44:45 +0700 Subject: [PATCH] Proper pattern drive recipes --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 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 980dada09..74b7efdd5 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 @@ -126,25 +126,27 @@ fun addCraftingTableRecipes(consumer: RecipeOutput) { .build(consumer) MatteryRecipe(MItems.PATTERN_DRIVE_NORMAL, category = machinesCategory) - .rowAC(MItemTags.ADVANCED_CIRCUIT, MItemTags.ADVANCED_CIRCUIT) - .row(MItemTags.ADVANCED_CIRCUIT, MItemTags.TRITANIUM_PLATES, MItemTags.ADVANCED_CIRCUIT) - .rowAC(MItemTags.ADVANCED_CIRCUIT, MItemTags.ADVANCED_CIRCUIT) + .row(Tags.Items.DUSTS_GLOWSTONE, MItemTags.CARBON_PLATES, Tags.Items.DUSTS_GLOWSTONE) + .row(MItemTags.DILITHIUM_GEMS, MItemTags.ADVANCED_CIRCUIT, MItemTags.DILITHIUM_GEMS) + .row(Tags.Items.DUSTS_GLOWSTONE, Tags.Items.GEMS_DIAMOND, Tags.Items.DUSTS_GLOWSTONE) .unlockedBy(MItemTags.ADVANCED_CIRCUIT) .build(consumer) MatteryRecipe(MItems.PATTERN_DRIVE_DOUBLE, category = machinesCategory) .setUpgradeSource(MItems.PATTERN_DRIVE_NORMAL) .addUpgradeOps(UpgradeRecipe.MergePatterns) + .rowB(MItemTags.DILITHIUM_GEMS) .row(MItems.PATTERN_DRIVE_NORMAL, MItemTags.ADVANCED_CIRCUIT, MItems.PATTERN_DRIVE_NORMAL) + .rowB(MItemTags.DILITHIUM_GEMS) .unlockedBy(MItems.PATTERN_DRIVE_NORMAL) .build(consumer) MatteryRecipe(MItems.PATTERN_DRIVE_TRIPLE, category = machinesCategory) .setUpgradeSource(MItems.PATTERN_DRIVE_DOUBLE) .addUpgradeOps(UpgradeRecipe.MergePatterns) - .rowB(MItemTags.DILITHIUM_GEMS) + .row(Tags.Items.DUSTS_GLOWSTONE, MItemTags.DILITHIUM_GEMS, Tags.Items.DUSTS_GLOWSTONE) .row(MItems.PATTERN_DRIVE_DOUBLE, MItemTags.ADVANCED_CIRCUIT, MItems.PATTERN_DRIVE_DOUBLE) - .rowB(MItemTags.DILITHIUM_GEMS) + .row(Tags.Items.DUSTS_GLOWSTONE, MItemTags.DILITHIUM_GEMS, Tags.Items.DUSTS_GLOWSTONE) .unlockedBy(MItems.PATTERN_DRIVE_DOUBLE) .build(consumer)