aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/misc/GT_Bees.java
blob: 227e948fda40209f00e15e3a3b860794443a7fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package gregtech.loaders.misc;

import cpw.mods.fml.common.Loader;
import gregtech.GT_Mod;
import gregtech.common.items.ItemComb;

public class GT_Bees {

    public static ItemComb combs;

    public GT_Bees() {
        if (Loader.isModLoaded("Forestry") && GT_Mod.gregtechproxy.mGTBees) {
            combs = new ItemComb();
            combs.initCombsRecipes();
            GT_BeeDefinition.initBees();            
        }
    }
}