Fixed it so that the blood orb is no longer consumed in the crafting grid
This commit is contained in:
parent
be87a96a5f
commit
dbedcf0745
4 changed files with 20 additions and 20 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue