blob: b74ecd1a47dc07fcc7af7b4aa0e5f314aa77cead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package gregtech.loaders.misc;
import cpw.mods.fml.common.Loader;
import gregtech.GT_Mod;
import gregtech.common.items.ItemComb;
import gregtech.common.items.ItemDrop;
public class GT_Bees {
public static ItemComb combs;
public static ItemDrop drops;
public GT_Bees() {
if (Loader.isModLoaded("Forestry") && GT_Mod.gregtechproxy.mGTBees) {
combs = new ItemComb();
drops = new ItemDrop();
combs.initCombsRecipes();
GT_BeeDefinition.initBees();
}
}
}
|