aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item/general
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-12 11:19:33 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-12 11:19:33 +1000
commitf91fdfd23342cb2b3d759fe2c317ab632352d0b5 (patch)
tree6b2b893886ce519ba782dfb960cdd5dc3538c79b /src/Java/gtPlusPlus/core/item/general
parent7721a5dd91d121a0921350572a45a1a39ee1ecfe (diff)
downloadGT5-Unofficial-f91fdfd23342cb2b3d759fe2c317ab632352d0b5.tar.gz
GT5-Unofficial-f91fdfd23342cb2b3d759fe2c317ab632352d0b5.tar.bz2
GT5-Unofficial-f91fdfd23342cb2b3d759fe2c317ab632352d0b5.zip
+ Basic support for Project Table results within the large Auto-Crafter.
% More Project Table work.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item/general')
-rw-r--r--src/Java/gtPlusPlus/core/item/general/ItemEmpty.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/item/general/ItemEmpty.java b/src/Java/gtPlusPlus/core/item/general/ItemEmpty.java
new file mode 100644
index 0000000000..65c6ec6b97
--- /dev/null
+++ b/src/Java/gtPlusPlus/core/item/general/ItemEmpty.java
@@ -0,0 +1,20 @@
+package gtPlusPlus.core.item.general;
+
+import gtPlusPlus.core.creative.AddToCreativeTab;
+import gtPlusPlus.core.item.base.CoreItem;
+import net.minecraft.item.ItemStack;
+
+public class ItemEmpty extends CoreItem{
+
+ public ItemEmpty() {
+ super("item.empty", AddToCreativeTab.tabMisc);
+ }
+
+ @Override
+ public String getItemStackDisplayName(ItemStack tItem) {
+ return "Empty";
+ }
+
+
+
+}