summaryrefslogtreecommitdiff
path: root/ihl/guidebook/IHLGuidebookSlot.java
blob: b945ae39305c87f9afb01e5be48ecfad10f79d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package ihl.guidebook;

import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class IHLGuidebookSlot extends Slot
{
	IHLGuidebookInventory inventory;
    public IHLGuidebookSlot(IHLGuidebookInventory arg0, int arg1, int arg2, int arg3) 
    {
		super(arg0, arg1, arg2, arg3);
		inventory=arg0;
	}

	@Override
	public boolean isItemValid(ItemStack itemstack)
    {
        return false;
    }
}