Skip to content

Commit

Permalink
Convert the recipe for the Bone meal bag to use a Bone Block, String,…
Browse files Browse the repository at this point in the history
… and Paper. When uncrafting, You only get a bone block back.
  • Loading branch information
alexbegt committed Jun 29, 2017
1 parent 005968d commit e1efb92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -260,7 +260,7 @@ private void registerRecipes()
GameRegistry.addRecipe(new ShapedOreRecipe(potatoes_seed_bag.copy(), "sss", "sss", "sss", 's', "cropPotato"));
GameRegistry.addRecipe(new ShapedOreRecipe(carrots_seed_bag.copy(), "sss", "sss", "sss", 's', "cropCarrot"));
GameRegistry.addRecipe(nether_wart_seed_bag.copy(), "sss", "sss", "sss", 's', Items.NETHER_WART);
GameRegistry.addRecipe(new ItemStack(boneMealBag, 1, 0), "sss", "sss", "sss", 's', new ItemStack(Items.DYE, 1, 15));
GameRegistry.addRecipe(new ItemStack(boneMealBag, 1, 0), "bcb", "bab", "bbb", 'a', new ItemStack(Blocks.BONE_BLOCK), 'b', new ItemStack(Items.STRING), 'c', new ItemStack(Items.PAPER));

GameRegistry.addRecipe(new ItemStack(Items.WHEAT_SEEDS, 9, 0), "s", 's', wheat_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.POTATO, 9, 0), "s", 's', potatoes_seed_bag.copy());
Expand Down

0 comments on commit e1efb92

Please sign in to comment.