blob: 5f5de99ad709b9d599143661900d5f188a01680e (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package miscutil.xmod.gregtech;
import gregtech.api.util.GT_Config;
import miscutil.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials;
import miscutil.xmod.gregtech.common.blocks.fluid.GregtechFluidHandler;
import miscutil.xmod.gregtech.common.items.MetaGeneratedGregtechItems;
public class HANDLER_GT {
public static GT_Config mMaterialProperties = null;
public static void preInit(){
new MetaGeneratedGregtechItems();
if (mMaterialProperties != null){
GT_Materials.init(mMaterialProperties);
GregtechFluidHandler.run();
//new MetaGeneratedGregtechTools();
//new Processing_Ingot1();
//new Processing_Plate1();
//new Processing_Block();
}
//new Processing_HotIngots();
}
public static void init(){
/*if (Meta_GT_Proxy.mSortToTheEnd) {
new GT_ItemIterator().run();
Meta_GT_Proxy.registerUnificationEntries();
new GT_FuelLoader().run();
}*/
}
public static void postInit(){
/*Meta_GT_Proxy.activateOreDictHandler();
if (Meta_GT_Proxy.mSortToTheEnd) {
Meta_GT_Proxy.registerUnificationEntries();
} else {
new GT_ItemIterator().run();
Meta_GT_Proxy.registerUnificationEntries();
new GT_FuelLoader().run();
}*/
}
}
|