diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt index 328ee8ca2..7a02e888c 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/DecorativesRecipes.kt @@ -313,6 +313,16 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: RecipeOutpu .unlockedBy(MItems.LABORATORY_LAMP) .save(consumer, MItems.LABORATORY_LAMP_INVERTED.registryName!!.toString() + "_inv") + ShapelessRecipeBuilder(RecipeCategory.REDSTONE, MItems.REINFORCED_REDSTONE_LAMP, 1) + .requires(MItems.REINFORCED_REDSTONE_LAMP_INVERTED) + .unlockedBy(MItems.REINFORCED_REDSTONE_LAMP_INVERTED) + .save(consumer, MItems.REINFORCED_REDSTONE_LAMP_INVERTED.registryName!!.toString() + "_inv") + + ShapelessRecipeBuilder(RecipeCategory.REDSTONE, MItems.REINFORCED_REDSTONE_LAMP_INVERTED, 1) + .requires(MItems.REINFORCED_REDSTONE_LAMP) + .unlockedBy(MItems.REINFORCED_REDSTONE_LAMP) + .save(consumer, MItems.REINFORCED_REDSTONE_LAMP.registryName!!.toString() + "_inv") + for (color in DyeColor.entries) { MatteryRecipe(MBlocks.TRITANIUM_STRIPED_BLOCK[color]!!, 24, category = RecipeCategory.BUILDING_BLOCKS) .rowB(MItemTags.TRITANIUM_INGOTS)