From d5a431bf3ec6e20a0232d3b60d8e932adfcbec4f Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 25 Sep 2022 22:49:19 +0700 Subject: [PATCH] Add electromagnet to quantum transceiver recipe --- .../dbotthepony/mc/otm/datagen/recipes/CraftingTableRecipes.kt | 2 +- 1 file changed, 1 insertion(+), 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 1b064efc8..7940c4699 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 @@ -143,7 +143,7 @@ fun addCraftingTableRecipes(consumer: Consumer) { MatteryRecipe(MItems.QUANTUM_TRANSCEIVER, 2) .rowAC(MItemTags.COPPER_WIRES, MItemTags.COPPER_WIRES) .row(MItemTags.GOLD_WIRES, Tags.Items.ENDER_PEARLS, MItemTags.GOLD_WIRES) - .rowAC(MItemTags.GOLD_WIRES, MItemTags.GOLD_WIRES) + .row(MItemTags.GOLD_WIRES, MItems.ELECTROMAGNET, MItemTags.GOLD_WIRES) .unlockedBy(Tags.Items.ENDER_PEARLS) .build(consumer)