Added bonemeal into gunpowder recipe

This commit is contained in:
paulevsGitch 2020-12-17 18:40:21 +03:00
parent 8cd0b50e00
commit 28a786f210
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@
loader_version=0.10.8
# Mod Properties
mod_version = 0.8.0-beta
mod_version = 0.8.1-beta
maven_group = ru.betterend
archives_base_name = better-end

View file

@ -148,7 +148,7 @@ public class CraftingRecipes {
.build();
}
GridRecipe.make("sulphur_gunpowder", Items.GUNPOWDER).setList("SC").addMaterial('S', EndItems.CRYSTALLINE_SULPHUR).addMaterial('C', Items.COAL, Items.CHARCOAL).build();
GridRecipe.make("sulphur_gunpowder", Items.GUNPOWDER).setList("SCB").addMaterial('S', EndItems.CRYSTALLINE_SULPHUR).addMaterial('C', Items.COAL, Items.CHARCOAL).addMaterial('B', Items.BONE_MEAL).build();
GridRecipe.make("dense_emerald_ice", EndBlocks.DENSE_EMERALD_ICE).setShape("##", "##").addMaterial('#', EndBlocks.EMERALD_ICE).build();
GridRecipe.make("ancient_emerald_ice", EndBlocks.ANCIENT_EMERALD_ICE).setShape("###", "###", "###").addMaterial('#', EndBlocks.DENSE_EMERALD_ICE).build();