Require water when re-painting stuff

This commit is contained in:
DBotThePony 2024-08-31 16:43:42 +07:00
parent 17d08bd901
commit 717bf4cea1
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -22,7 +22,7 @@ private fun generate(consumer: RecipeOutput, items: Map<out DyeColor?, Item>, 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)
))
}
}