Fix tartaric gem returning null (#1068)

This commit is contained in:
Nicholas Ignoffo 2017-03-03 16:45:53 -08:00
parent b1670cdbd5
commit fd54ab0458

View file

@ -180,7 +180,7 @@ public class ItemSoulGem extends Item implements IDemonWillGem, IMeshProvider, I
setWill(thisType, soulGemStack, newSoulsLeft); setWill(thisType, soulGemStack, newSoulsLeft);
if (soul.getWill(thisType, soulStack) <= 0) if (soul.getWill(thisType, soulStack) <= 0)
{ {
return null; return ItemStack.EMPTY;
} }
} }
} }