Fix Living Armor check NPE (#583)

This commit is contained in:
Nick 2016-01-30 01:39:23 -08:00
parent 5dabee3c86
commit 608cc3d2b8
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
------------------------------------------------------
Version 2.0.0-11
------------------------------------------------------
- Fix NPE when checking if a player has a full Living Armor set
------------------------------------------------------
Version 2.0.0-10
------------------------------------------------------

View file

@ -8,6 +8,7 @@ import java.util.Map.Entry;
import WayofTime.bloodmagic.item.armour.ItemLivingArmour;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.world.World;
@ -242,7 +243,8 @@ public class LivingArmour implements ILivingArmour
public static boolean hasFullSet(EntityPlayer player) {
for (int slot = 0; slot < player.inventory.armorInventory.length; slot++) {
if (!(player.inventory.armorItemInSlot(slot).getItem() instanceof ItemLivingArmour))
ItemStack slotStack = player.inventory.armorItemInSlot(slot);
if (slotStack != null && !(slotStack.getItem() instanceof ItemLivingArmour))
return false;
}