diff options
author | Dream-MasterXXL <dream-master@gmx.net> | 2019-04-22 19:04:56 +0700 |
---|---|---|
committer | Dream-MasterXXL <dream-master@gmx.net> | 2019-04-22 19:04:56 +0700 |
commit | d1861033c7dc4c234d7ee3e52eee2e8c7c342e12 (patch) | |
tree | 7905d23e2b98d2c8c045325f1052d6e9f5eadaa1 /src/main | |
parent | f0c353ee28ea8cf082f9f184a94dfd4350ab488a (diff) | |
download | GT5-Unofficial-d1861033c7dc4c234d7ee3e52eee2e8c7c342e12.tar.gz GT5-Unofficial-d1861033c7dc4c234d7ee3e52eee2e8c7c342e12.tar.bz2 GT5-Unofficial-d1861033c7dc4c234d7ee3e52eee2e8c7c342e12.zip |
fix
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 03f4398393..7ce10f718a 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -670,7 +670,7 @@ public class GT_Mod implements IGT_Mod { } } catch (Throwable e) {e.printStackTrace(GT_Log.err);} - if (Loader.isModLoaded("forestry")) + if (Loader.isModLoaded("Forestry")) new GT_Bees(); //Disable Low Grav regardless of config if Cleanroom is disabled. @@ -789,7 +789,7 @@ public class GT_Mod implements IGT_Mod { } } - if (Loader.isModLoaded("forestry")) { + if (Loader.isModLoaded("Forestry")) { GT_Forestry_Compat.transferCentrifugeRecipes(); GT_Forestry_Compat.transferSqueezerRecipes(); } @@ -896,7 +896,7 @@ public class GT_Mod implements IGT_Mod { } catch (Throwable e) {e.printStackTrace(GT_Log.err);} GT_Log.out.println("GT_Mod: Adding Fake Recipes for NEI"); - if (Loader.isModLoaded("forestry")) + if (Loader.isModLoaded("Forestry")) GT_Forestry_Compat.populateFakeNeiRecipes(); if (ItemList.IC2_Crop_Seeds.get(1L) != null) { |