aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/itemBlocks
diff options
context:
space:
mode:
authorkekzdealer <kekzdealer@gmail.com>2019-12-10 11:36:39 +0100
committerkekzdealer <kekzdealer@gmail.com>2019-12-10 11:36:39 +0100
commitc7329fe829f69f4585837a5f483dab064d57774f (patch)
tree73d512a3afa641f989df2c155949296dbfd383f0 /src/main/java/itemBlocks
parentf9eac626254ed31477925618a45af5005e4628ac (diff)
downloadGT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.tar.gz
GT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.tar.bz2
GT5-Unofficial-c7329fe829f69f4585837a5f483dab064d57774f.zip
visiting Lucy~
Diffstat (limited to 'src/main/java/itemBlocks')
-rw-r--r--src/main/java/itemBlocks/IB_ItemProxyCable.java (renamed from src/main/java/itemBlocks/IB_ItemDistributionCable.java)4
-rw-r--r--src/main/java/itemBlocks/IB_ItemProxyEndpoint.java (renamed from src/main/java/itemBlocks/IB_ItemDistributionNode.java)8
-rw-r--r--src/main/java/itemBlocks/IB_ItemProxySource.java23
3 files changed, 29 insertions, 6 deletions
diff --git a/src/main/java/itemBlocks/IB_ItemDistributionCable.java b/src/main/java/itemBlocks/IB_ItemProxyCable.java
index 832e95ca0a..590cb98285 100644
--- a/src/main/java/itemBlocks/IB_ItemDistributionCable.java
+++ b/src/main/java/itemBlocks/IB_ItemProxyCable.java
@@ -7,9 +7,9 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
-public class IB_ItemDistributionCable extends ItemBlock {
+public class IB_ItemProxyCable extends ItemBlock {
- public IB_ItemDistributionCable(Block block) {
+ public IB_ItemProxyCable(Block block) {
super(block);
}
diff --git a/src/main/java/itemBlocks/IB_ItemDistributionNode.java b/src/main/java/itemBlocks/IB_ItemProxyEndpoint.java
index cfea3853db..90d683c226 100644
--- a/src/main/java/itemBlocks/IB_ItemDistributionNode.java
+++ b/src/main/java/itemBlocks/IB_ItemProxyEndpoint.java
@@ -7,16 +7,16 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
-public class IB_ItemDistributionNode extends ItemBlock {
+public class IB_ItemProxyEndpoint extends ItemBlock {
- public IB_ItemDistributionNode(Block block) {
+ public IB_ItemProxyEndpoint(Block block) {
super(block);
}
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) {
- lines.add("Access point for Item Distribution Networks");
- lines.add("Wired networks do not require a controller");
+ lines.add("Point the marked side to where you want to provide an inventory proxy to.");
+ lines.add("Insert an Integrated Circuit to set the network channel.");
}
}
diff --git a/src/main/java/itemBlocks/IB_ItemProxySource.java b/src/main/java/itemBlocks/IB_ItemProxySource.java
new file mode 100644
index 0000000000..cc937b3b33
--- /dev/null
+++ b/src/main/java/itemBlocks/IB_ItemProxySource.java
@@ -0,0 +1,23 @@
+package itemBlocks;
+
+import java.util.List;
+
+import net.minecraft.block.Block;
+import net.minecraft.entity.player.EntityPlayer;
+import net.minecraft.item.ItemBlock;
+import net.minecraft.item.ItemStack;
+
+public class IB_ItemProxySource extends ItemBlock {
+
+ public IB_ItemProxySource(Block block) {
+ super(block);
+ }
+
+ @SuppressWarnings({ "rawtypes", "unchecked" })
+ @Override
+ public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) {
+ lines.add("Point to an inventory to act as source for the item proxy network.");
+ lines.add("Insert an Integrated Circuit to set the network channel.");
+ lines.add("Only one source can use one channel on the same network.");
+ }
+}