diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-27 16:16:10 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-05-27 16:16:10 +1000 |
commit | 4cbc4b40b3e1d5197b6e390311472fffcf4bec21 (patch) | |
tree | c84f47cf4a7a6a82dbb92c02123cc7b18c14f19d /src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe | |
parent | 79f37cfd42c53af7969fba388b711955e389b76d (diff) | |
download | GT5-Unofficial-4cbc4b40b3e1d5197b6e390311472fffcf4bec21.tar.gz GT5-Unofficial-4cbc4b40b3e1d5197b6e390311472fffcf4bec21.tar.bz2 GT5-Unofficial-4cbc4b40b3e1d5197b6e390311472fffcf4bec21.zip |
$ Hopefully fixed issue where BoP limestone is valid for Fluorite.
$ Fixed the ABS not using the correct texture on the top layer input hatch.
% More internal work on LFTR rewrite.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java index 5b897a0ad0..768bfec3d3 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/recipe/RecipeLoader_LFTR.java @@ -86,9 +86,13 @@ public class RecipeLoader_LFTR { 4096//fuel value ); - mRecipesLFTR.add(LFTR1); + /*mRecipesLFTR.add(LFTR1); mRecipesLFTR.add(LFTR2); - mRecipesLFTR.add(LFTR3); + mRecipesLFTR.add(LFTR3);*/ + Recipe_GT.Gregtech_Recipe_Map.sLiquidFluorineThoriumReactorRecipesEx.add(LFTR1); + Recipe_GT.Gregtech_Recipe_Map.sLiquidFluorineThoriumReactorRecipesEx.add(LFTR2); + Recipe_GT.Gregtech_Recipe_Map.sLiquidFluorineThoriumReactorRecipesEx.add(LFTR3); + } } |