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 5fc86899f..95e7d8efe 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 @@ -22,7 +22,7 @@ private fun generate(consumer: RecipeOutput, items: Map, am consumer.accept(modLocation("painter/" + targetItem.recipeName), PainterRecipe( Ingredient.of(items.entries.stream().filter { it.key != null && it.key != targetColor }.map { ItemStack(it.value) }), ItemStack(targetItem), - mapOf(targetColor to amount) + mapOf(targetColor to amount, null to 15) )) } }