From 691f2f108d774f61af0968da9c10d162eacf1c6e Mon Sep 17 00:00:00 2001 From: paulevsGitch Date: Sat, 5 Dec 2020 12:29:27 +0300 Subject: [PATCH] Added recipes --- src/main/java/ru/betterend/recipe/CraftingRecipes.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/ru/betterend/recipe/CraftingRecipes.java b/src/main/java/ru/betterend/recipe/CraftingRecipes.java index 6c7f3c3f..c2beb4c1 100644 --- a/src/main/java/ru/betterend/recipe/CraftingRecipes.java +++ b/src/main/java/ru/betterend/recipe/CraftingRecipes.java @@ -117,6 +117,8 @@ public class CraftingRecipes { GridRecipe.make("twisted_moss_dye", Items.PINK_DYE).setList("#").addMaterial('#', EndBlocks.TWISTED_MOSS).build(); GridRecipe.make("byshy_grass_dye", Items.MAGENTA_DYE).setList("#").addMaterial('#', EndBlocks.BUSHY_GRASS).build(); GridRecipe.make("tail_moss_dye", Items.GRAY_DYE).setList("#").addMaterial('#', EndBlocks.TAIL_MOSS).build(); + GridRecipe.make("petal_block", EndBlocks.HYDRALUX_PETAL_BLOCK).setShape("##", "##").addMaterial('#', EndItems.HYDRALUX_PETAL).build(); + GridRecipe.make("petal_white_dye", Items.WHITE_DYE).setList("#").addMaterial('#', EndItems.HYDRALUX_PETAL).build(); } private static void registerLantern(String name, Block lantern, Block slab) {