From 6acee0de088c8d125e7ba884568a32e1552439c2 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Wed, 12 Feb 2025 11:23:35 +0700 Subject: [PATCH] Swap redstone for dilithium gems in advanced upgrade recipes --- .../mc/otm/datagen/recipes/MachineUpgradeRecipes.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/MachineUpgradeRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/MachineUpgradeRecipes.kt index 7fe23d3df..8b8e44acd 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/MachineUpgradeRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/MachineUpgradeRecipes.kt @@ -19,9 +19,9 @@ private fun makeNormalRecipe(element: Item, result: Item): MatteryRecipe { private fun makeAdvancedRecipe(element: Item, result: Item): MatteryRecipe { return MatteryRecipe(result, 1) - .row(MItemTags.GOLD_WIRES, Items.REDSTONE, MItemTags.GOLD_WIRES) + .row(MItemTags.GOLD_WIRES, MItemTags.DILITHIUM_GEMS, MItemTags.GOLD_WIRES) .row(MItemTags.TRITANIUM_PLATES, element, MItemTags.TRITANIUM_PLATES) - .row(MItems.ELECTRIC_PARTS, Items.REDSTONE, MItems.ELECTRIC_PARTS) + .row(MItems.ELECTRIC_PARTS, MItemTags.DILITHIUM_GEMS, MItems.ELECTRIC_PARTS) .unlockedBy(MItemTags.TRITANIUM_PLATES) .unlockedBy(MItems.ELECTRIC_PARTS) .unlockedBy(element)