diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PlatePressRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PlatePressRecipes.kt index 6843c9c04..c8c9bfffe 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PlatePressRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PlatePressRecipes.kt @@ -3,7 +3,9 @@ package ru.dbotthepony.mc.otm.datagen.recipes import net.minecraft.util.valueproviders.ConstantFloat import net.minecraft.world.item.Items import net.minecraft.world.item.crafting.Ingredient +import net.minecraftforge.common.Tags import ru.dbotthepony.mc.otm.registry.MItemTags +import ru.dbotthepony.mc.otm.registry.MItems fun addPlatePressRecipes(provider: MatteryRecipeProvider) { val baselineMetals = arrayOf("iron" to 0.2f, "silver" to 0.3f, "bronze" to 0.3f, "lead" to 0.3f, "constantan" to 0.4f, "brass" to 0.3f) @@ -23,4 +25,5 @@ fun addPlatePressRecipes(provider: MatteryRecipeProvider) { } provider.plate("carbon", result = Ingredient.of(MItemTags.CARBON_PLATES), ingredient = Ingredient.of(Items.COAL), workTicks = 140, experience = ConstantFloat.of(0.3f)) + provider.plate("circuit_plating", result = Ingredient.of(MItems.CIRCUIT_PLATING), ingredient = Ingredient.of(Tags.Items.SAND), workTicks = 120, experience = ConstantFloat.of(0.2f)) } diff --git a/src/main/resources/data/overdrive_that_matters/recipes/plates/circuit_plating.json b/src/main/resources/data/overdrive_that_matters/recipes/plates/circuit_plating.json deleted file mode 100644 index afe37fe11..000000000 --- a/src/main/resources/data/overdrive_that_matters/recipes/plates/circuit_plating.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "overdrive_that_matters:plate_press", - "input": { - "tag": "forge:sand" - }, - "result": { - "item": "overdrive_that_matters:circuit_plating" - }, - "work_time": 120 -} \ No newline at end of file