blob: 08f5cc9d2b7f1dd20fe90716939d196fc8c93df4 (
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
45
46
|
package net.glease.ggfab;
import net.glease.ggfab.mte.MTE_AdvAssLine;
import net.glease.ggfab.mte.MTE_LinkedInputBus;
import net.glease.ggfab.nei.IMCForNEI;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.event.*;
import gregtech.api.GregTech_API;
@Mod(
modid = GGConstants.MODID,
version = GGConstants.VERSION,
name = GGConstants.MODNAME,
acceptedMinecraftVersions = "[1.7.10]",
dependencies = "required-after:IC2;required-before:gregtech")
public class GigaGramFab {
public GigaGramFab() {
// initialize the textures
// noinspection ResultOfMethodCallIgnored
BlockIcons.OVERLAY_FRONT_ADV_ASSLINE.name();
}
@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event) {
GregTech_API.sAfterGTPreload.add(() -> {
GGItemList.AdvAssLine.set(
new MTE_AdvAssLine(13532, "ggfab.machine.adv_assline", "Advanced Assembly Line").getStackForm(1));
GGItemList.LinkedInputBus.set(
new MTE_LinkedInputBus(13533, "ggfab.machine.linked_input_bus", "Linked Input Bus", 5)
.getStackForm(1));
});
GregTech_API.sBeforeGTPostload.add(new ComponentRecipeLoader());
ConfigurationHandler.INSTANCE.init(event.getSuggestedConfigurationFile());
}
@Mod.EventHandler
public void init(FMLInitializationEvent event) {
IMCForNEI.IMCSender();
}
@Mod.EventHandler
public void postInit(FMLPostInitializationEvent event) {}
}
|