diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-10-07 13:04:05 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-10-07 13:04:05 +1000 |
commit | d98e0b22cb0d7dbb7145cf0f751f6e4e44ed08d1 (patch) | |
tree | e1719570ed4cbf62c202c5b6548a9f365ea7332e /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities | |
parent | ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2 (diff) | |
download | GT5-Unofficial-d98e0b22cb0d7dbb7145cf0f751f6e4e44ed08d1.tar.gz GT5-Unofficial-d98e0b22cb0d7dbb7145cf0f751f6e4e44ed08d1.tar.bz2 GT5-Unofficial-d98e0b22cb0d7dbb7145cf0f751f6e4e44ed08d1.zip |
$ Fixed custom IC2 cells. (HF, SO2, etc)
% Changed how cells can be generated for further flexibility.
- Removed logging from the LFTR.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java index 274d76e6f3..cc8f25869c 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java @@ -633,7 +633,7 @@ public class GregtechMTE_NuclearReactor extends GT_MetaTileEntity_MultiBlockBase } if (MathUtils.randInt(1, 200) == 1){ - Utils.LOG_INFO("Adding U233"); + //Utils.LOG_INFO("Adding U233"); this.addOutput(NUCLIDE.getInstance().URANIUM233.getFluid(MathUtils.randInt(1, 10))); } |