Add missing tritanium block yellow stripe painter recipe
This commit is contained in:
parent
bf450e2ff9
commit
c186a6b405
@ -323,4 +323,28 @@ fun addPainterRecipes(consumer: RecipeOutput) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
consumer.accept(PainterArmorDyeRecipe(mapOf(null to 15)).toFinished(modLocation("painter/armor_clear_dye")))
|
consumer.accept(PainterArmorDyeRecipe(mapOf(null to 15)).toFinished(modLocation("painter/armor_clear_dye")))
|
||||||
|
|
||||||
|
consumer.accept(PainterRecipe(
|
||||||
|
Ingredient.of(MRegistry.TRITANIUM_BLOCK.item),
|
||||||
|
ItemStack(MItems.TRITANIUM_STRIPED_BLOCK),
|
||||||
|
mapOf(DyeColor.YELLOW to 1)
|
||||||
|
).toFinished(modLocation("painter/tritanium_yellow_stripe")))
|
||||||
|
|
||||||
|
consumer.accept(PainterRecipe(
|
||||||
|
Ingredient.of(MRegistry.TRITANIUM_STAIRS.item),
|
||||||
|
ItemStack(MItems.TRITANIUM_STRIPED_STAIRS),
|
||||||
|
mapOf(DyeColor.YELLOW to 1)
|
||||||
|
).toFinished(modLocation("painter/tritanium_yellow_stripe_stairs")))
|
||||||
|
|
||||||
|
consumer.accept(PainterRecipe(
|
||||||
|
Ingredient.of(MRegistry.TRITANIUM_SLAB.item),
|
||||||
|
ItemStack(MItems.TRITANIUM_STRIPED_SLAB),
|
||||||
|
mapOf(DyeColor.YELLOW to 1)
|
||||||
|
).toFinished(modLocation("painter/tritanium_yellow_stripe_slab")))
|
||||||
|
|
||||||
|
consumer.accept(PainterRecipe(
|
||||||
|
Ingredient.of(MRegistry.TRITANIUM_WALL.item),
|
||||||
|
ItemStack(MItems.TRITANIUM_STRIPED_WALL),
|
||||||
|
mapOf(DyeColor.YELLOW to 1)
|
||||||
|
).toFinished(modLocation("painter/tritanium_yellow_stripe_wall")))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user