27 lines
797 B
Java
27 lines
797 B
Java
package gregtech.api.gui;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class GT_Slot_Armor extends Slot {
|
|
final int mArmorType;
|
|
final EntityPlayer mPlayer;
|
|
|
|
public GT_Slot_Armor(IInventory par2IInventory, int par3, int par4, int par5, int par6, EntityPlayer aPlayer) {
|
|
super(par2IInventory, par3, par4, par5);
|
|
mArmorType = par6;
|
|
mPlayer = aPlayer;
|
|
}
|
|
|
|
@Override
|
|
public int getSlotStackLimit() {
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public boolean isItemValid(ItemStack aStack) {
|
|
return aStack != null && aStack.getItem() != null && aStack.getItem().isValidArmor(aStack, mArmorType, mPlayer);
|
|
}
|
|
}
|