TechReborn/src/main/java/techreborn/client/SlotOutput.java

23 lines
440 B
Java
Raw Normal View History

2015-04-10 00:17:30 +02:00
package techreborn.client;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotOutput extends Slot {
2015-04-24 15:20:09 +02:00
public SlotOutput(IInventory par1iInventory, int par2, int par3, int par4)
{
super(par1iInventory, par2, par3, par4);
}
2015-04-10 00:17:30 +02:00
2015-04-24 15:20:09 +02:00
public boolean isItemValid(ItemStack par1ItemStack)
{
return false;
}
2015-04-11 12:30:16 +02:00
2015-04-24 15:20:09 +02:00
public int getSlotStackLimit()
{
return 64;
}
2015-04-10 00:17:30 +02:00
}