aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-02-06 01:20:35 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-02-06 01:20:35 +0000
commit496494c89c7510e6454cf5b117bc4e44f0ad8e38 (patch)
treea19f7eecf05650e8a15136007022d085f6cb6a7d /src
parent5507b8c0e7b2117a33dfb1fedbd14b3c30f6a01b (diff)
downloadGT5-Unofficial-496494c89c7510e6454cf5b117bc4e44f0ad8e38.tar.gz
GT5-Unofficial-496494c89c7510e6454cf5b117bc4e44f0ad8e38.tar.bz2
GT5-Unofficial-496494c89c7510e6454cf5b117bc4e44f0ad8e38.zip
% Updated Hand pump tooltip.
Diffstat (limited to 'src')
-rw-r--r--src/Java/gtPlusPlus/core/item/tool/misc/GregtechPump.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/tool/misc/GregtechPump.java b/src/Java/gtPlusPlus/core/item/tool/misc/GregtechPump.java
index b42ac41a37..721ebc8c24 100644
--- a/src/Java/gtPlusPlus/core/item/tool/misc/GregtechPump.java
+++ b/src/Java/gtPlusPlus/core/item/tool/misc/GregtechPump.java
@@ -199,7 +199,9 @@ public class GregtechPump extends Item implements ISpecialElectricItem, IElectri
if (aOffsetMeta <= 3) {
FluidStack f = getFluid(aStack);
- aList.add("Can also drain any other standard fluid container block.");
+ aList.add("Can also drain any other standard fluid container block");
+ aList.add("Cannot be emptied via RMB, use inside a tank with GUI");
+ aList.add(EnumChatFormatting.DARK_GRAY+"This is technically just a fancy fluid cell");
aList.add(EnumChatFormatting.BLUE + (f != null ? f.getLocalizedName() : "No Fluids Contained"));
aList.add(EnumChatFormatting.BLUE + (f != null ? ""+f.amount : ""+0) + "L" + " / " + getCapacity(aStack) + "L");
}