diff options
Diffstat (limited to 'ihl/guidebook/IHLGuidebookSlot.java')
| -rw-r--r-- | ihl/guidebook/IHLGuidebookSlot.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ihl/guidebook/IHLGuidebookSlot.java b/ihl/guidebook/IHLGuidebookSlot.java new file mode 100644 index 0000000..b945ae3 --- /dev/null +++ b/ihl/guidebook/IHLGuidebookSlot.java @@ -0,0 +1,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;
+ }
+}
|
