GT5-Unofficial/src/main/java/gregtech/loaders/misc/GT_Bees.java

19 lines
424 B
Java
Raw Normal View History

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
}