From b21014e2a31ded9b0ce5f4a6d2c07f027d59fcbf Mon Sep 17 00:00:00 2001 From: Justin Aquadro Date: Wed, 8 Apr 2015 00:19:46 -0400 Subject: [PATCH] Add missing recipe --- src/com/jaquadro/minecraft/gardenstuff/core/ModRecipes.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/jaquadro/minecraft/gardenstuff/core/ModRecipes.java b/src/com/jaquadro/minecraft/gardenstuff/core/ModRecipes.java index 27ae293..afe3c7e 100644 --- a/src/com/jaquadro/minecraft/gardenstuff/core/ModRecipes.java +++ b/src/com/jaquadro/minecraft/gardenstuff/core/ModRecipes.java @@ -86,6 +86,8 @@ public void init () { GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.latticeWood, 8, i), " x ", "xxx", " x ", 'x', new ItemStack(Blocks.planks, 1, i)); } + GameRegistry.addRecipe(new ItemStack(ModItems.mossPaste), "xyx", "yxy", "xyx", 'x', Blocks.vine, 'y', Items.clay_ball); + GameRegistry.addSmelting(wroughtIronIngot, new ItemStack(Items.iron_ingot), 0); } }