2013-02-13 03:47:17 +01:00
|
|
|
package com.pahimar.ee3.inventory;
|
|
|
|
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.inventory.Slot;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
2013-03-08 19:40:59 +01:00
|
|
|
/**
|
|
|
|
* Equivalent-Exchange-3
|
|
|
|
*
|
|
|
|
* SlotCalcinator
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2013-02-13 03:47:17 +01:00
|
|
|
public class SlotCalcinator extends Slot {
|
|
|
|
|
|
|
|
public SlotCalcinator(IInventory inventory, int x, int y, int z) {
|
|
|
|
|
|
|
|
super(inventory, x, y, z);
|
|
|
|
}
|
2013-03-08 19:40:59 +01:00
|
|
|
|
|
|
|
@Override
|
2013-02-13 03:47:17 +01:00
|
|
|
public boolean isItemValid(ItemStack par1ItemStack) {
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2013-02-13 03:47:17 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|