From 5e6b8bb725019c5c4afd9e487c1f1e57f36405eb Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 10 Feb 2025 14:44:27 +0700 Subject: [PATCH] Replace ender pearls with dilithium gems in matter transform matrix recipe --- .../ru/dbotthepony/mc/otm/datagen/recipes/ComponentRecipes.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/ComponentRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/ComponentRecipes.kt index 89a1a4e4d..f243ef97d 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/ComponentRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/ComponentRecipes.kt @@ -71,7 +71,7 @@ fun addComponentRecipes(consumer: RecipeOutput) { .build(consumer) MatteryRecipe(MItems.MATTER_TRANSFORM_MATRIX, category = RecipeCategory.MISC) - .row(Tags.Items.ENDER_PEARLS, MItems.MATTER_CABLE, Tags.Items.ENDER_PEARLS) + .row(MItemTags.DILITHIUM_GEMS, MItems.MATTER_CABLE, MItemTags.DILITHIUM_GEMS) .row(MItemTags.TRITANIUM_PLATES, MItemTags.ADVANCED_CIRCUIT, MItemTags.TRITANIUM_PLATES) .rowB(MItems.MATTER_CABLE) .unlockedBy(MItems.MATTER_CABLE)