Recipes commit

Fix
This commit is contained in:
Arcaratus 2015-12-30 17:24:40 -05:00
parent e48eedb874
commit 07097c00a9
16 changed files with 213 additions and 112 deletions

View file

@ -17,7 +17,6 @@ import WayofTime.bloodmagic.util.helper.InventoryRenderHelper;
public class ModItems
{
public static Item bloodOrb;
public static BloodOrb orbWeak;
public static BloodOrb orbApprentice;
@ -38,6 +37,8 @@ public class ModItems
public static Item daggerOfSacrifice;
public static Item ritualDiviner;
public static Item lavaCrystal;
public static Item boundSword;
public static Item boundPickaxe;
public static Item boundAxe;
@ -102,6 +103,9 @@ public class ModItems
daggerOfSacrifice = registerItem(new ItemDaggerOfSacrifice());
ritualDiviner = registerItem(new ItemRitualDiviner());
lavaCrystal = registerItem(new ItemLavaCrystal());
GameRegistry.registerFuelHandler(new ItemLavaCrystal());
boundSword = registerItem(new ItemBoundSword());
boundPickaxe = registerItem(new ItemBoundPickaxe());
@ -177,6 +181,8 @@ public class ModItems
renderHelper.itemRender(ritualDiviner, 0);
renderHelper.itemRender(lavaCrystal);
renderHelper.itemRender(boundSword, 0);
renderHelper.itemRender(boundSword, 1);
renderHelper.itemRender(boundPickaxe, 0);