diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-10-10 18:44:32 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-10-10 18:44:32 +0100 |
commit | 9c71ae70fc2276b4c56baa26217be2d23dde63b6 (patch) | |
tree | a409249e197be63c75b4822038ba04897c59009d /src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations | |
parent | ab84b1d95f8c4880891debc594a41f57941de78a (diff) | |
download | GT5-Unofficial-9c71ae70fc2276b4c56baa26217be2d23dde63b6.tar.gz GT5-Unofficial-9c71ae70fc2276b4c56baa26217be2d23dde63b6.tar.bz2 GT5-Unofficial-9c71ae70fc2276b4c56baa26217be2d23dde63b6.zip |
+ Added OD tag 'rodBlaze' to blaze rods.
$ Corrected certain multiblocks not counting their casings during construction. Fixes #549.
$ Stopped custom MTE's incorrectly handling getDrops(). Fixes #553.
$ Stopped GT++ Multis trying to reduce the 'wait' time on themselves when placed or first loaded. Fixes #556.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 4 |
1 files changed, 2 insertions, 2 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 b556dc10f9..c16f62866f 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 @@ -2232,9 +2232,9 @@ GT_MetaTileEntity_MultiBlockBase { } private final void tryTickWaitTimerDown() { - if (mStartUpCheck > 10) { + /*if (mStartUpCheck > 10) { mStartUpCheck = 10; - } + }*/ } |