diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-14 00:50:21 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-05-14 00:50:21 +1000 |
| commit | 033e0873de4ff7a3646c76bfcc03447047b3f05b (patch) | |
| tree | b6e15e033e1cbe494e38f30a269309b373416668 /src/Java/gtPlusPlus/core/material/nuclear | |
| parent | 8381aaa4973f893ea7d3210dfe0720d20d011295 (diff) | |
| download | GT5-Unofficial-033e0873de4ff7a3646c76bfcc03447047b3f05b.tar.gz GT5-Unofficial-033e0873de4ff7a3646c76bfcc03447047b3f05b.tar.bz2 GT5-Unofficial-033e0873de4ff7a3646c76bfcc03447047b3f05b.zip | |
+ Added better processing for LFTR Molten Salts.
% Cleaned up material generation slightly.
$ Rewrote Dust base item class, old items will automatically swap into their new form upon world load.
$ Added MissingMappingsEvent handler to try handle dust transition.
Diffstat (limited to 'src/Java/gtPlusPlus/core/material/nuclear')
| -rw-r--r-- | src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java index 0c81a39959..45d35d1022 100644 --- a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java +++ b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java @@ -17,7 +17,7 @@ public final class NUCLIDE { 870, //Boiling Point in C 150, //Protons 150, //Neutrons - false, //Uses Blast furnace? + true, //Uses Blast furnace? StringUtils.subscript(StringUtils.superscript("7")+"LiFBeF2ThF4UF4"), //Chemical Formula 5, //Radioactivity Level //Material Stacks with Percentage of required elements. @@ -36,7 +36,7 @@ public final class NUCLIDE { 940, //Boiling Point in C 150, //Protons 150, //Neutrons - false, //Uses Blast furnace? + true, //Uses Blast furnace? StringUtils.subscript(StringUtils.superscript("7")+"LiFBeF2ZrF4UF4"), //Chemical Formula 5, //Radioactivity Level //Material Stacks with Percentage of required elements. @@ -55,7 +55,7 @@ public final class NUCLIDE { 890, //Boiling Point in C 150, //Protons 150, //Neutrons - false, //Uses Blast furnace? + true, //Uses Blast furnace? StringUtils.subscript(StringUtils.superscript("7")+"LiFBeF2ZrF4")+StringUtils.superscript("235U"), //Chemical Formula 5, //Radioactivity Level //Material Stacks with Percentage of required elements. |
