From d3423a616032811491bb09a6f4a4efca890fcead Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 8 Jan 2024 14:13:43 +0700 Subject: [PATCH] Post merge fixes for 1.20.1 --- .../mc/otm/datagen/recipes/PainterRecipes.kt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt index 5df25aed9..e94a10555 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/recipes/PainterRecipes.kt @@ -325,26 +325,30 @@ fun addPainterRecipes(consumer: RecipeOutput) { consumer.accept(PainterArmorDyeRecipe(modLocation("painter/armor_clear_dye"), mapOf(null to 15)).toFinished()) consumer.accept(PainterRecipe( + modLocation("painter/tritanium_yellow_stripe"), Ingredient.of(MRegistry.TRITANIUM_BLOCK.item), ItemStack(MItems.TRITANIUM_STRIPED_BLOCK), mapOf(DyeColor.YELLOW to 1) - ).toFinished(modLocation("painter/tritanium_yellow_stripe"))) + ).toFinished()) consumer.accept(PainterRecipe( + modLocation("painter/tritanium_yellow_stripe_stairs"), Ingredient.of(MRegistry.TRITANIUM_STAIRS.item), ItemStack(MItems.TRITANIUM_STRIPED_STAIRS), mapOf(DyeColor.YELLOW to 1) - ).toFinished(modLocation("painter/tritanium_yellow_stripe_stairs"))) + ).toFinished()) consumer.accept(PainterRecipe( + modLocation("painter/tritanium_yellow_stripe_slab"), Ingredient.of(MRegistry.TRITANIUM_SLAB.item), ItemStack(MItems.TRITANIUM_STRIPED_SLAB), mapOf(DyeColor.YELLOW to 1) - ).toFinished(modLocation("painter/tritanium_yellow_stripe_slab"))) + ).toFinished()) consumer.accept(PainterRecipe( + modLocation("painter/tritanium_yellow_stripe_wall"), Ingredient.of(MRegistry.TRITANIUM_WALL.item), ItemStack(MItems.TRITANIUM_STRIPED_WALL), mapOf(DyeColor.YELLOW to 1) - ).toFinished(modLocation("painter/tritanium_yellow_stripe_wall"))) + ).toFinished()) }