package com.vanhal.progressiveautomation.gui.slots;
import com.vanhal.progressiveautomation.entities.chopper.TileChopper;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class SlotSaplings extends Slot {
public SlotSaplings(IInventory par1iInventory, int par2, int par3, int par4) {
super(par1iInventory, par2, par3, par4);
}
public boolean isItemValid(ItemStack itemStack) {
return TileChopper.checkSapling(itemStack);
}
}