From c7d87168e3418c7f7eb1282432540dba2c97b119 Mon Sep 17 00:00:00 2001 From: kekzdealer Date: Sun, 13 Oct 2019 18:52:41 +0200 Subject: removed debug prints, added more tooltips --- src/main/java/itemBlocks/IB_TFFTMultiHatch.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/main/java/itemBlocks/IB_TFFTMultiHatch.java (limited to 'src/main/java/itemBlocks') diff --git a/src/main/java/itemBlocks/IB_TFFTMultiHatch.java b/src/main/java/itemBlocks/IB_TFFTMultiHatch.java new file mode 100644 index 0000000000..2dca3e95be --- /dev/null +++ b/src/main/java/itemBlocks/IB_TFFTMultiHatch.java @@ -0,0 +1,22 @@ +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_TFFTMultiHatch extends ItemBlock { + + public IB_TFFTMultiHatch(Block block) { + super(block); + } + + @SuppressWarnings({ "rawtypes", "unchecked" }) + @Override + public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) { + lines.add("Special hatch for the T.F.F.T"); + lines.add("Allows for automated interaction with all stored fluids in a single place"); + } +} -- cgit