Fix tartaric gem returning null (#1068)
This commit is contained in:
parent
b1670cdbd5
commit
fd54ab0458
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue