fixed NPE in the blood orbs.

This commit is contained in:
WayofTime 2016-02-07 18:21:28 -05:00
parent b406bb4672
commit 8c3019447a

View file

@ -58,6 +58,11 @@ public class ItemBloodOrb extends ItemBindable implements IBloodOrb, IBindable
if (PlayerHelper.isFakePlayer(player))
return stack;
if (!stack.hasTagCompound())
{
return stack;
}
if (Strings.isNullOrEmpty(stack.getTagCompound().getString(Constants.NBT.OWNER_UUID)))
return stack;