[Feature] Craft Tinted Glass from Smaragdant crystal shard

This commit is contained in:
Frank 2022-11-18 19:47:51 +01:00
parent 94d5b6b3e4
commit 70cbb70b61

View file

@ -495,6 +495,13 @@ public class CraftingRecipes {
.setShape("##", "##") .setShape("##", "##")
.addMaterial('#', EndBlocks.SMARAGDANT_CRYSTAL_SHARD) .addMaterial('#', EndBlocks.SMARAGDANT_CRYSTAL_SHARD)
.build(); .build();
BCLRecipeBuilder.crafting(BetterEnd.makeID("tined_glass_from_smaragdant"), Blocks.TINTED_GLASS)
.checkConfig(Configs.RECIPE_CONFIG)
.setShape(" # ", "#G#", " # ")
.addMaterial('#', EndBlocks.SMARAGDANT_CRYSTAL_SHARD)
.addMaterial('G', Blocks.GLASS)
.build();
} }
private static void registerLantern(String name, Block lantern, Block slab) { private static void registerLantern(String name, Block lantern, Block slab) {