Fixed it so that the blood orb is no longer consumed in the crafting grid

This commit is contained in:
WayofTime 2016-04-03 07:58:01 -04:00
parent be87a96a5f
commit dbedcf0745
4 changed files with 20 additions and 20 deletions

View file

@ -31,6 +31,7 @@ public class ItemBloodOrb extends ItemBindableBase implements IBloodOrb, IBindab
{
setUnlocalizedName(Constants.Mod.MODID + ".orb.");
setRegistryName(Constants.BloodMagicItem.BLOOD_ORB.getRegName());
this.setMaxDamage(0);
setHasSubtypes(true);
}
@ -98,7 +99,7 @@ public class ItemBloodOrb extends ItemBindableBase implements IBloodOrb, IBindab
@Override
public ItemStack getContainerItem(ItemStack stack)
{
return stack;
return stack.copy();
}
@Override