18 lines
405 B
Java
18 lines
405 B
Java
package com.pahimar.ee3.inventory;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class SlotCalcinator extends Slot {
|
|
|
|
public SlotCalcinator(IInventory inventory, int x, int y, int z) {
|
|
|
|
super(inventory, x, y, z);
|
|
}
|
|
|
|
public boolean isItemValid(ItemStack par1ItemStack) {
|
|
return false;
|
|
}
|
|
|
|
}
|