Fixed toggleable sigils not binding.

This commit is contained in:
WayofTime 2016-01-08 11:06:07 -05:00
parent aee58c487c
commit c015e3421f
4 changed files with 8 additions and 1 deletions

View file

@ -160,6 +160,7 @@ public class ModRecipes
public static void addSoulForgeRecipes()
{
SoulForgeRecipeRegistry.registerRecipe(new ItemStack(Items.diamond), 1, 0.5, new ItemStack(Items.redstone), new ItemStack(Items.redstone), new ItemStack(Items.redstone));
SoulForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.soulGem), 1, 1, "dustRedstone", "gemDiamond", "blockGlass", "dyeBlue");
SoulForgeRecipeRegistry.registerRecipe(new ItemStack(ModItems.soulSword), 0, 0, new ItemStack(ModItems.soulGem), new ItemStack(Items.iron_sword));
}
}