2015-10-22 00:47:13 +00:00
|
|
|
package gregtech.loaders.misc;
|
|
|
|
|
|
|
|
import cpw.mods.fml.common.Loader;
|
|
|
|
import gregtech.GT_Mod;
|
|
|
|
import gregtech.common.items.ItemComb;
|
|
|
|
|
|
|
|
public class GT_Bees {
|
|
|
|
|
2015-10-22 02:06:25 +00:00
|
|
|
public static ItemComb combs;
|
|
|
|
|
|
|
|
public GT_Bees() {
|
|
|
|
if (Loader.isModLoaded("Forestry") && GT_Mod.gregtechproxy.mGTBees) {
|
|
|
|
combs = new ItemComb();
|
|
|
|
combs.initCombsRecipes();
|
|
|
|
GT_BeeDefinition.initBees();
|
|
|
|
}
|
|
|
|
}
|
2015-10-22 00:47:13 +00:00
|
|
|
}
|