diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-18 13:22:24 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-18 13:22:24 +0000 |
commit | 7584c062ba3bffa32ced43d86aec839cf3c435bd (patch) | |
tree | f1851ae4dcf918b4008462e1828b445e7ab6c1f0 /src/Java/gtPlusPlus/xmod/gregtech/api | |
parent | 85f5914d4b3a50fe8520c7793e715797da7d2ae9 (diff) | |
download | GT5-Unofficial-7584c062ba3bffa32ced43d86aec839cf3c435bd.tar.gz GT5-Unofficial-7584c062ba3bffa32ced43d86aec839cf3c435bd.tar.bz2 GT5-Unofficial-7584c062ba3bffa32ced43d86aec839cf3c435bd.zip |
% Finished Structure check for LNR.
$ Fixed minor Tooltip bug on all multis.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java index a115b223d8..ef5429af62 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java @@ -416,7 +416,7 @@ public abstract class GregtechMeta_MultiBlockBase extends GT_MetaTileEntity_Mult aToolTip = ArrayUtils.addAll(aToolTip, z); //Valid Cached Tooltip during Run-Time - if (aCachedToolTip == null || aCachedToolTip.length <= 0 || aCachedToolTip.length != aToolTip.length) { + if (aCachedToolTip == null || aCachedToolTip.length <= 0 || aCachedToolTip.length != aToolTip.length || this.mTotalRunTime % 100 == 0) { aCachedToolTip = aToolTip; } return aCachedToolTip; |