вам надо для приготовления рецепта:

This commit is contained in:
DBotThePony 2024-09-06 20:13:09 +07:00
parent 481f36c04a
commit e6387d7d5b
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -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)
}
}