diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-11-27 22:10:37 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-11-27 22:10:37 +0000 |
commit | 3dd1422ce9272053261ef36167b70490793e37fc (patch) | |
tree | 288b90ce8db49fff06dd843a29af36b80bfc4a08 /src | |
parent | da3c0db581319fae37aad8d5129eeb1dc18f57e6 (diff) | |
download | GT5-Unofficial-3dd1422ce9272053261ef36167b70490793e37fc.tar.gz GT5-Unofficial-3dd1422ce9272053261ef36167b70490793e37fc.tar.bz2 GT5-Unofficial-3dd1422ce9272053261ef36167b70490793e37fc.zip |
Adjusted output timings.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java index f63f6fb771..be868964d5 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java @@ -651,12 +651,12 @@ public class GregtechMTE_NuclearReactor extends GregtechMeta_MultiBlockBase { this.turnCasingActive(false); } // Try output some Uranium-233 - if (MathUtils.randInt(1, 200) == 1){ - this.addOutput(ELEMENT.getInstance().URANIUM233.getFluid(MathUtils.randInt(1, 5))); + if (MathUtils.randInt(300, 600) == 1){ + this.addOutput(ELEMENT.getInstance().URANIUM233.getFluid(MathUtils.randInt(1, 10))); } // Set a random tick counter, count it up. if (this.mSpargeTime == 0) { - this.mSpargeTime = MathUtils.randInt(400, 1200); + this.mSpargeTime = MathUtils.randInt(1200, 2400); Logger.INFO("Set Sparge Timer to "+this.mSpargeTime); } else { |