aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/GTplusplus.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-09-11 00:01:38 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-09-11 00:01:38 +1000
commit6d27a6f758e0b897be93fe0e2649cb5f6002ef3b (patch)
tree415e7c18ed88b4c58c98074b6da4285363bbb4db /src/Java/gtPlusPlus/GTplusplus.java
parenta175442fa1fcaf2369e811be8b25ee1d8c4369fc (diff)
downloadGT5-Unofficial-6d27a6f758e0b897be93fe0e2649cb5f6002ef3b.tar.gz
GT5-Unofficial-6d27a6f758e0b897be93fe0e2649cb5f6002ef3b.tar.bz2
GT5-Unofficial-6d27a6f758e0b897be93fe0e2649cb5f6002ef3b.zip
[1.4.6.5-release]
% Cleaned up fluid duplicates. % Cleaned up handling of GT Meta-Tools. % Changed tone of my latest Fluid Cell icons, now it's darker and more defined. - Removed some dead classes that have no use.
Diffstat (limited to 'src/Java/gtPlusPlus/GTplusplus.java')
-rw-r--r--src/Java/gtPlusPlus/GTplusplus.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus.java b/src/Java/gtPlusPlus/GTplusplus.java
index a67213251c..b8c597f5a2 100644
--- a/src/Java/gtPlusPlus/GTplusplus.java
+++ b/src/Java/gtPlusPlus/GTplusplus.java
@@ -22,6 +22,7 @@ import gtPlusPlus.core.util.Utils;
import gtPlusPlus.core.util.item.UtilsItems;
import gtPlusPlus.core.util.math.MathUtils;
import gtPlusPlus.xmod.gregtech.HANDLER_GT;
+import gtPlusPlus.xmod.gregtech.common.Meta_GT_Proxy;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
@@ -46,6 +47,8 @@ implements ActionListener
@Mod.Instance(CORE.MODID)
public static GTplusplus instance;
+
+ protected static Meta_GT_Proxy gregtechproxy;
@SidedProxy(clientSide="gtPlusPlus.core.proxy.ClientProxy", serverSide="gtPlusPlus.core.proxy.ServerProxy")
public static CommonProxy proxy;
@@ -148,6 +151,11 @@ implements ActionListener
dumpGtRecipeMap(Gregtech_Recipe_Map.sCokeOvenRecipes);
dumpGtRecipeMap(Gregtech_Recipe_Map.sMatterFab2Recipes);
}
+
+ Utils.LOG_INFO("Activating GT OreDictionary Handler, this can take some time.");
+ Utils.LOG_INFO("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
+ Meta_GT_Proxy.activateOreDictHandler();
+ Utils.LOG_INFO("Congratulations, a second cake has been baked for you.");
}
@EventHandler