From c83c21ef972117e1da08acea286b9be1d51c0808 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Fri, 16 Sep 2022 00:18:42 +0700 Subject: [PATCH] Update gravitation field sensor recipe --- .../mc/otm/datagen/recipes/CraftingTableRecipes.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 9d916e218..b2c0ba781 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 @@ -114,14 +114,16 @@ fun addCraftingTableRecipes(consumer: Consumer) { MatteryRecipe(MItems.GRAVITATION_FIELD_SENSOR) .rowB(MItemTags.BASIC_CIRCUIT) - .row(MItemTags.COPPER_WIRES, Tags.Items.ENDER_PEARLS, MItemTags.COPPER_WIRES) + .row(MItemTags.PLATE_TRITANIUM, MItems.QUANTUM_TRANSCEIVER, MItemTags.PLATE_TRITANIUM) .rowB(MItemTags.PLATE_IRON) + .unlockedBy(MItems.QUANTUM_TRANSCEIVER) .build(consumer) MatteryRecipe(MItems.GRAVITATION_FIELD_LIMITER) .row(Tags.Items.ENDER_PEARLS, MItemTags.ADVANCED_CIRCUIT, Tags.Items.ENDER_PEARLS) .row(MItemTags.GOLD_WIRES, MItems.QUANTUM_TRANSCEIVER, MItemTags.GOLD_WIRES) .rowB(MItemTags.PLATE_TRITANIUM) + .unlockedBy(MItems.QUANTUM_TRANSCEIVER) .build(consumer) MatteryRecipe(MItems.BLACK_HOLE_SCANNER)