From 84b4d11e693439e87687c5d636497ed61de9402c Mon Sep 17 00:00:00 2001 From: miozune Date: Sun, 10 Sep 2023 16:34:53 +0900 Subject: Remove Item Proxy things --- .../java/common/itemBlocks/IB_ItemProxyCable.java | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/main/java/common/itemBlocks/IB_ItemProxyCable.java (limited to 'src/main/java/common/itemBlocks/IB_ItemProxyCable.java') diff --git a/src/main/java/common/itemBlocks/IB_ItemProxyCable.java b/src/main/java/common/itemBlocks/IB_ItemProxyCable.java deleted file mode 100644 index 6022194225..0000000000 --- a/src/main/java/common/itemBlocks/IB_ItemProxyCable.java +++ /dev/null @@ -1,22 +0,0 @@ -package common.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; -import net.minecraft.util.StatCollector; - -public class IB_ItemProxyCable extends ItemBlock { - - public IB_ItemProxyCable(Block block) { - super(block); - } - - @SuppressWarnings({ "unchecked" }) - @Override - public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) { - lines.add(StatCollector.translateToLocal("tile.kekztech_itemproxycable_block.0.desc")); - } -} -- cgit