diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-25 22:58:27 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-25 22:58:27 +0100 |
commit | e617124ba171bdf0a5aa8165c63715634de3f3c3 (patch) | |
tree | 60ab6be780e6211217f40343ce4b2d5194d77c30 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage | |
parent | 5ea5183724134c5ca6259ef7efcf46209661ecc7 (diff) | |
download | GT5-Unofficial-e617124ba171bdf0a5aa8165c63715634de3f3c3.tar.gz GT5-Unofficial-e617124ba171bdf0a5aa8165c63715634de3f3c3.tar.bz2 GT5-Unofficial-e617124ba171bdf0a5aa8165c63715634de3f3c3.zip |
+ Added a way to debug Chunk Loading via ASM injection into Forge.
+ Added new require function to TileEntityBase.java.
+ Added some logging to pipe generation.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredTank.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredTank.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredTank.java index e0cfd78a6d..9c67f0f84f 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredTank.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredTank.java @@ -28,8 +28,7 @@ public class GT_MetaTileEntity_TieredTank extends GT_MetaTileEntity_BasicTank { public String[] getDescription() { String[] aTip; if (this.mFluid == null) { - //aTip = new String[] {this.mDescription, "Not a very portable tank.", CORE.GT_Tooltip}; - aTip = super.getDescription(); + aTip = new String[] {this.mDescription, "A portable tank.", CORE.GT_Tooltip}; } else { aTip = new String[] {this.mDescription, "A portable tank.", "Fluid: "+mFluid.getLocalizedName()+" "+mFluid.amount+"L", CORE.GT_Tooltip}; |