From 6d52f80618bc3ad1fb8fc6cd68e86bea0efff62f Mon Sep 17 00:00:00 2001 From: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> Date: Mon, 22 Apr 2019 14:12:15 +0200 Subject: rerouted forestry modid to the config value to prevent typos Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> --- src/main/java/gregtech/loaders/misc/GT_Bees.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/java/gregtech/loaders/misc') diff --git a/src/main/java/gregtech/loaders/misc/GT_Bees.java b/src/main/java/gregtech/loaders/misc/GT_Bees.java index 5bfdfca8e2..281eb3c675 100644 --- a/src/main/java/gregtech/loaders/misc/GT_Bees.java +++ b/src/main/java/gregtech/loaders/misc/GT_Bees.java @@ -15,6 +15,8 @@ import gregtech.loaders.misc.GT_BeeDefinition; import net.minecraft.world.World; import net.minecraft.world.biome.BiomeGenBase; +import static gregtech.api.enums.GT_Values.MOD_ID_FR; + public class GT_Bees { public static IAlleleInteger noFertility; @@ -39,7 +41,7 @@ public class GT_Bees { public static ItemComb combs; public GT_Bees() { - if (Loader.isModLoaded("Forestry") && GT_Mod.gregtechproxy.mGTBees) { + if (Loader.isModLoaded(MOD_ID_FR) && GT_Mod.gregtechproxy.mGTBees) { GT_AlleleHelper.initialisation(); setupGTAlleles(); propolis = new ItemPropolis(); -- cgit