aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/slots/SlotDataStick.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/core/slots/SlotDataStick.java')
-rw-r--r--src/Java/gtPlusPlus/core/slots/SlotDataStick.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/Java/gtPlusPlus/core/slots/SlotDataStick.java b/src/Java/gtPlusPlus/core/slots/SlotDataStick.java
deleted file mode 100644
index ce97a2fdbf..0000000000
--- a/src/Java/gtPlusPlus/core/slots/SlotDataStick.java
+++ /dev/null
@@ -1,42 +0,0 @@
-package gtPlusPlus.core.slots;
-
-import net.minecraft.inventory.IInventory;
-import net.minecraft.inventory.Slot;
-import net.minecraft.item.ItemStack;
-
-import gregtech.api.util.GT_Utility;
-import gtPlusPlus.core.recipe.common.CI;
-
-public class SlotDataStick extends Slot {
-
- public SlotDataStick(final IInventory inventory, final int slot, final int x, final int y) {
- super(inventory, slot, x, y);
-
- }
-
- public static ItemStack[] mDataItems = new ItemStack[2];
-
- @Override
- public synchronized boolean isItemValid(final ItemStack itemstack) {
- boolean isValid = false;
- if (itemstack != null) {
- if (mDataItems[0] == null) {
- mDataItems[0] = CI.getDataStick();
- }
- if (mDataItems[1] == null) {
- mDataItems[1] = CI.getDataOrb();
- }
- if (mDataItems[0] != null && mDataItems[1] != null) {
- if (GT_Utility.areStacksEqual(itemstack, mDataItems[0], true) || GT_Utility.areStacksEqual(itemstack, mDataItems[1], true) ) {
- isValid = true;
- }
- }
- }
- return isValid;
- }
-
- @Override
- public int getSlotStackLimit() {
- return 1;
- }
-}