blob: 9d646e3eb535dfd45defb007a9a10c527a0ffcb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package gtPlusPlus.xmod.bop;
import gtPlusPlus.core.lib.LoadedMods;
import gtPlusPlus.xmod.bop.blocks.BOP_Block_Registrator;
public class HANDLER_BiomesOPlenty {
public static void preInit(){
//if (LoadedMods.BiomesOPlenty){
BOP_Block_Registrator.run();
//}
}
public static void init(){
if (LoadedMods.BiomesOPlenty){
}
}
public static void postInit(){
if (LoadedMods.BiomesOPlenty){
BOP_Block_Registrator.recipes();
}
}
}
|