This commit is contained in:
paulevsGitch 2020-11-27 03:08:50 +03:00
parent 5b8ffebb36
commit e25c3a15ab
2 changed files with 9 additions and 3 deletions

View file

@ -106,6 +106,8 @@ public class WoodenMaterial {
GridRecipe.make(name + "_chest", chest).setShape("###", "# #", "###").addMaterial('#', planks).setGroup("end_chests").build();
GridRecipe.make(name + "_barrel", barrel).setShape("#S#", "# #", "#S#").addMaterial('#', planks).addMaterial('S', slab).setGroup("end_barrels").build();
GridRecipe.make(name + "_bookshelf", shelf).setShape("###", "PPP", "###").addMaterial('#', planks).addMaterial('P', Items.PAPER).setGroup("end_bookshelves").build();
GridRecipe.make(name + "_bark", bark).setShape("##", "##").addMaterial('#', log).setOutputCount(3).build();
GridRecipe.make(name + "_log", log).setShape("##", "##").addMaterial('#', bark).setOutputCount(3).build();
// Item Tags //
TagHelper.addTag(ItemTags.PLANKS, planks);