From d1861033c7dc4c234d7ee3e52eee2e8c7c342e12 Mon Sep 17 00:00:00 2001 From: Dream-MasterXXL Date: Mon, 22 Apr 2019 19:04:56 +0700 Subject: fix --- src/main/java/gregtech/GT_Mod.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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) { -- cgit