aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-10-06 02:50:30 +1000
committerAlkalus <draknyte1@hotmail.com>2017-10-06 02:50:30 +1000
commitab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2 (patch)
tree596cbe670f424207ecdecf9b10da0d8872a7f062 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi
parent444cddd65e9966ff62ac6064434cec4f867a67ad (diff)
downloadGT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.tar.gz
GT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.tar.bz2
GT5-Unofficial-ab880b63b5aa60b8e3d4f65b38c1d2ec880d1ed2.zip
$ .08 compliance fixes.
% LFTR Changes. It now outputs U233 on average every 10 seconds. % Updated LFTR tool-tip.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMTE_NuclearReactor.java8
1 files changed, 7 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 044904f75b..274d76e6f3 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
@@ -66,6 +66,9 @@ public class GregtechMTE_NuclearReactor extends GT_MetaTileEntity_MultiBlockBase
"--Mufflers go in the top 3x3--",
"4x IV+ Mufflers",
"Causes " + (20 * getPollutionPerTick(null)) + " Pollution per second",
+ "Outputs U233 every 10 seconds, on average",
+ "Input Fluorine and Helium for bonus byproducts",
+ "Input Li2BeF4 and a molten salt as fuel.",
CORE.GT_Tooltip};
}
@@ -488,7 +491,6 @@ public class GregtechMTE_NuclearReactor extends GT_MetaTileEntity_MultiBlockBase
//this.mLastRecipe = aFuel;
}
-
this.fuelValue = aFuel.mSpecialValue;
this.fuelRemaining = hatchFluid1.amount; //Record available fuel
@@ -630,6 +632,10 @@ public class GregtechMTE_NuclearReactor extends GT_MetaTileEntity_MultiBlockBase
this.turnCasingActive(false);
}
+ if (MathUtils.randInt(1, 200) == 1){
+ Utils.LOG_INFO("Adding U233");
+ this.addOutput(NUCLIDE.getInstance().URANIUM233.getFluid(MathUtils.randInt(1, 10)));
+ }
if (this.mDynamoHatches != null) {
for (GT_MetaTileEntity_Hatch_Dynamo tHatch : this.mDynamoHatches) {