diff options
| author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-05-25 22:49:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-25 23:49:07 +0200 |
| commit | 54571d8a8498833ffc43cbdab891bf08a6e212a7 (patch) | |
| tree | 3825aedb08ee1023814a4f9a80f65ebcf0fb4ea4 /src/main/java/gtPlusPlus/core/item | |
| parent | e16602a481fd7d798e7b0b0f7b004f5aa4b4d32f (diff) | |
| download | GT5-Unofficial-54571d8a8498833ffc43cbdab891bf08a6e212a7.tar.gz GT5-Unofficial-54571d8a8498833ffc43cbdab891bf08a6e212a7.tar.bz2 GT5-Unofficial-54571d8a8498833ffc43cbdab891bf08a6e212a7.zip | |
LFTR Fixes and Changes (#187)
- Changed the name of most LFTR-related chemicals to make it easier to distinguish and document them;
- Changed the recipes of the LFTR's controller and inner casings to be craftable in IV, the tier which this multi is first intended for;
- Fixed a bug where the LFTR would output the fluids of the last successfully recipe while heating up, on every tick. When it's heating up, it now sets the output fluids to an empty array. There are better ways to do this, I welcome an improvement to this part of the code.
Diffstat (limited to 'src/main/java/gtPlusPlus/core/item')
| -rw-r--r-- | src/main/java/gtPlusPlus/core/item/chemistry/NuclearChem.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/core/item/chemistry/NuclearChem.java b/src/main/java/gtPlusPlus/core/item/chemistry/NuclearChem.java index f112b0d2a5..61f8b0a236 100644 --- a/src/main/java/gtPlusPlus/core/item/chemistry/NuclearChem.java +++ b/src/main/java/gtPlusPlus/core/item/chemistry/NuclearChem.java @@ -68,7 +68,7 @@ public class NuclearChem extends ItemPackage { Burnt_LiFBeF2ThF4UF4 = FluidUtils.generateFluidNonMolten("BurntLiFBeF2ThF4UF4", "Burnt LiFBeF2ThF4UF4 Salt", 545, new short[]{48, 175, 48, 100}, null, null); Burnt_LiFBeF2ZrF4UF4 = FluidUtils.generateFluidNonMolten("BurntLiFBeF2ZrF4UF4", "Burnt LiFBeF2ZrF4UF4 Salt", 520, new short[]{48, 168, 68, 100}, null, null); Burnt_LiFBeF2ZrF4U235 = FluidUtils.generateFluidNonMolten("BurntLiFBeF2ZrF4U235", "Burnt LiFBeF2ZrF4U235 Salt", 533, new short[]{68, 185, 48, 100}, null, null); - Impure_LiFBeF2 = FluidUtils.generateFluidNonMolten("ImpureLiFBeF2", "Impure LiFBeF2 Salt", 533, new short[]{110, 75, 186, 100}, null, null); + Impure_LiFBeF2 = FluidUtils.generateFluidNonMolten("ImpureLiFBeF2", "Impure Molten Salt Base", 533, new short[]{110, 75, 186, 100}, null, null); if (FluidUtils.getFluidStack("fluid.Mutagen", 1) == null) { GeneticMutagen = FluidUtils.generateFluidNonMolten("GeneticMutagen", "Genetic Mutagen", 12, new short[]{22, 148, 185, 100}, null, null); generateMutagenRecipe = true; |
