| 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; | |
| } | |
| } |