23 lines
No EOL
440 B
Java
23 lines
No EOL
440 B
Java
package techreborn.client;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
|
import net.minecraft.inventory.Slot;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class SlotOutput extends Slot {
|
|
|
|
public SlotOutput(IInventory par1iInventory, int par2, int par3, int par4)
|
|
{
|
|
super(par1iInventory, par2, par3, par4);
|
|
}
|
|
|
|
public boolean isItemValid(ItemStack par1ItemStack)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public int getSlotStackLimit()
|
|
{
|
|
return 64;
|
|
}
|
|
} |