blob: 63a8789c52d1ca9f2d5222bfc4cfc9f1306b59e8 [file] [log] [blame] [raw]
package com.legacy.aether.containers.slots;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotEnchanter extends Slot
{
public SlotEnchanter(IInventory inventoryIn, int index, int xPosition, int yPosition)
{
super(inventoryIn, index, xPosition, yPosition);
}
@Override
public boolean isItemValid(ItemStack par1ItemStack)
{
return false;
}
}