From 033e0873de4ff7a3646c76bfcc03447047b3f05b Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Mon, 14 May 2018 00:50:21 +1000 Subject: + 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. --- src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/core/material/nuclear') 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. -- cgit