diff options
author | unknown <gtandemmodding@gmail.com> | 2022-02-09 21:36:29 +1100 |
---|---|---|
committer | unknown <gtandemmodding@gmail.com> | 2022-02-09 21:36:29 +1100 |
commit | 081b28cea6d000822c9fb15c994b6a2cbe1a73bc (patch) | |
tree | 90ad9f76312aeb633e5880e98ef06ce48641080c /src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java | |
parent | ab6749a2c1c0154af018e83a60abe2041574ff27 (diff) | |
download | GT5-Unofficial-081b28cea6d000822c9fb15c994b6a2cbe1a73bc.tar.gz GT5-Unofficial-081b28cea6d000822c9fb15c994b6a2cbe1a73bc.tar.bz2 GT5-Unofficial-081b28cea6d000822c9fb15c994b6a2cbe1a73bc.zip |
Remove reference to GT++ recipes
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java b/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java index 1e6f2e6d2c..b973aec26a 100644 --- a/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java +++ b/src/main/java/com/elisis/gtnhlanth/GTNHLanthanides.java @@ -19,6 +19,9 @@ import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLLoadCompleteEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
+import cpw.mods.fml.common.event.FMLServerAboutToStartEvent;
+import cpw.mods.fml.common.event.FMLServerStartedEvent;
+import cpw.mods.fml.common.event.FMLServerStartingEvent;
import gregtech.api.util.GT_Log;
@Mod(modid = Tags.MODID, version = Tags.VERSION, name = Tags.MODNAME,
@@ -67,12 +70,13 @@ public class GTNHLanthanides { +
}
@EventHandler
public static void onModLoadingComplete(FMLLoadCompleteEvent e) {
GT_Log.out.print("AAAAAAAAAAAAAA");
- RecipeLoader.removeCeriumSources();
+ //
GT_Log.out.print("We are done loading");
BotRecipes.removeRecipes();
@@ -80,5 +84,16 @@ public class GTNHLanthanides { }
+ // This is horrifying and I'm sorry
+ @EventHandler
+ public static void onServerAboutToStart(FMLServerAboutToStartEvent e) {
+ //RecipeLoader.removeCeriumSources();
+ }
+
+ @EventHandler
+ public static void onServerStart(FMLServerStartedEvent e) {
+ RecipeLoader.removeCeriumSources();
+ }
+
}
|