2015-10-22 00:47:13 +00:00
|
|
|
package gregtech.loaders.misc;
|
|
|
|
|
|
|
|
import cpw.mods.fml.common.Loader;
|
2015-10-28 23:37:04 +00:00
|
|
|
import forestry.api.apiculture.BeeManager;
|
|
|
|
import forestry.api.apiculture.EnumBeeChromosome;
|
|
|
|
import forestry.api.genetics.IAllele;
|
|
|
|
import forestry.api.genetics.IClassification;
|
|
|
|
import forestry.core.genetics.alleles.AlleleHelper;
|
|
|
|
import forestry.core.genetics.alleles.EnumAllele;
|
2015-10-22 00:47:13 +00:00
|
|
|
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();
|
2015-10-28 23:37:04 +00:00
|
|
|
GT_BeeDefinition.initBees();
|
2015-10-22 02:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-22 00:47:13 +00:00
|
|
|
}
|