diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-08-23 08:52:55 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-08-23 08:52:55 +1000 |
commit | fbe7f5c310c647135d9fa4a2b407e688525e5b9e (patch) | |
tree | 938701010098d3dcc200fa1a1b55badf59629df2 /src/Java/gtPlusPlus/GTplusplus.java | |
parent | 98a0ca6df251d7fc1070b1ffb6fa43da950f4280 (diff) | |
download | GT5-Unofficial-fbe7f5c310c647135d9fa4a2b407e688525e5b9e.tar.gz GT5-Unofficial-fbe7f5c310c647135d9fa4a2b407e688525e5b9e.tar.bz2 GT5-Unofficial-fbe7f5c310c647135d9fa4a2b407e688525e5b9e.zip |
$ Fixed LFTR power output logic.
+ Added some more logging.
Diffstat (limited to 'src/Java/gtPlusPlus/GTplusplus.java')
-rw-r--r-- | src/Java/gtPlusPlus/GTplusplus.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus.java b/src/Java/gtPlusPlus/GTplusplus.java index 91efec62fb..bd64028027 100644 --- a/src/Java/gtPlusPlus/GTplusplus.java +++ b/src/Java/gtPlusPlus/GTplusplus.java @@ -20,6 +20,7 @@ import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import gregtech.api.enums.GT_Values; +import gregtech.api.enums.Materials; import gregtech.api.util.EmptyRecipeMap; import gregtech.api.util.GT_Recipe; import gregtech.api.util.GT_Recipe.GT_Recipe_Map; @@ -243,6 +244,10 @@ public class GTplusplus implements ActionListener { this.dumpGtRecipeMap(Gregtech_Recipe_Map.sMatterFab2Recipes); this.dumpGtRecipeMap(Gregtech_Recipe_Map.sAlloyBlastSmelterRecipes); } + + for (Materials s : gtPlusPlus.core.material.gregtech.CustomGTMaterials.Custom_GT_Materials){ + Utils.LOG_INFO("Verification for New Material: "+s.mName); + } // ~ //ReflectionUtils.becauseIWorkHard(); |