[Fix] Wrong Recipe for hanging sign

This commit is contained in:
Frank 2023-06-08 14:04:35 +02:00
parent 42ecb2c500
commit 55ec6e8f68

View file

@ -52,9 +52,9 @@ public class HangingSign extends MaterialSlot<WoodenComplexMaterial> {
BCLRecipeBuilder
.crafting(id, parentMaterial.getBlock(suffix))
.setOutputCount(3)
.setShape("###", "###", " I ")
.addMaterial('#', parentMaterial.getBlock(WoodSlots.PLANKS))
.addMaterial('I', Items.STICK)
.setShape("I I", "###", "###")
.addMaterial('#', parentMaterial.getBlock(WoodSlots.STRIPPED_LOG))
.addMaterial('I', Items.CHAIN)
.setGroup("sign")
.setCategory(RecipeCategory.DECORATIONS)
.build()