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 ea87b8ab4..9e511cc54 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 @@ -376,4 +376,17 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: RecipeOutpu .rowB(MItemTags.TRITANIUM_INGOTS) .row(MItemTags.TRITANIUM_INGOTS, MItemTags.TRITANIUM_INGOTS, MItemTags.TRITANIUM_INGOTS) .build(consumer) + + for ((color, item) in MRegistry.COMPUTER_TERMINAL.allItems) { + val builder = MatteryRecipe(item, category = RecipeCategory.DECORATIONS) + + builder.rowB(MItemTags.BASIC_CIRCUIT) + builder.rowB(MItemTags.TRITANIUM_PLATES) + + if (color != null) { + builder.rowB(color.tag) + } + + builder.build(consumer) + } }