diff options
author | Muramasa- <haydenkilloh@gmail.com> | 2017-08-12 02:21:09 +0100 |
---|---|---|
committer | Muramasa- <haydenkilloh@gmail.com> | 2017-08-12 02:21:09 +0100 |
commit | 9fc5d17eb564f10214aeaeb57b35eebdb997ffef (patch) | |
tree | 535615d7aecd588ec651413bb177c7291aff3bd2 /src/main/java/gregtech/common/tileentities/machines | |
parent | 14a7d0768fa770e777a4a0b5ac1f6a4f0842d821 (diff) | |
download | GT5-Unofficial-9fc5d17eb564f10214aeaeb57b35eebdb997ffef.tar.gz GT5-Unofficial-9fc5d17eb564f10214aeaeb57b35eebdb997ffef.tar.bz2 GT5-Unofficial-9fc5d17eb564f10214aeaeb57b35eebdb997ffef.zip |
Pump tooltips
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Pump.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Pump.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Pump.java index f484c4b635..1cc9635f1f 100644 --- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Pump.java +++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_Pump.java @@ -34,7 +34,7 @@ public class GT_MetaTileEntity_Pump extends GT_MetaTileEntity_Hatch { public Block mPumpedBlock2 = null; public GT_MetaTileEntity_Pump(int aID, String aName, String aNameRegional, int aTier) { - super(aID, aName, aNameRegional, aTier, 3, "The best way of emptying Oceans!"); + super(aID, aName, aNameRegional, aTier, 3, new String[]{"The best way to empty Oceans!", "Pumping Area: " + (10 * ((int) Math.pow(1.6, aTier))) * 2 + 1 + "x" + (10 * ((int) Math.pow(1.6, aTier))) * 2 + 1}); } public GT_MetaTileEntity_Pump(String aName, int aTier, String aDescription, ITexture[][][] aTextures) { |