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