Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
p455w0rd committed Apr 13, 2019
1 parent 9804b82 commit caab7ec
Show file tree
Hide file tree
Showing 7 changed files with 226 additions and 80 deletions.
22 changes: 19 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ repositories {
name = "tterrag"
url = "http://maven.tterrag.com"
}
maven {
name = "tterrag2"
url = "http://maven2.tterrag.com"
}
maven {
name = "tehnut"
url = "http://tehnut.info/maven"
Expand All @@ -48,23 +52,35 @@ repositories {
name = "CoFH"
url = "http://maven.covers1624.net"
}
maven {
name = "Curse"
url = "https://minecraft.curseforge.com/api/maven/"
}
}

dependencies {
deobfCompile "mezz.jei:jei_1.12.2:+"
deobfCompile "mcp.mobius.waila:Hwyla:1.8.26-B41_1.12.2"
deobfCompile "mcjty.theoneprobe:TheOneProbe-1.12:1.12+"
deobfCompile "codechicken:CodeChickenLib:1.12.2-3.2.1.353:universal"
deobfCompile "codechicken:CodeChickenLib:1.12.2-3.2.2.354:universal"
deobfCompile "codechicken:EnderStorage:1.12.2-2.4.5.135:universal"
deobfCompile "cpw.mods:ironchest:1.12.2-7.0.34.820"
deobfCompile "cofh:RedstoneFlux:1.12-2.0.2.4:universal"
deobfCompile "cofh:RedstoneFlux:1.12-2.1.0.6:universal"
deobfCompile "cofh:ThermalDynamics:1.12.2-2+:universal"
deobfCompile "cofh:ThermalFoundation:1.12.2-2+:universal"
deobfCompile "cofh:ThermalExpansion:1.12.2-5+:universal"
deobfCompile "cofh:CoFHCore:1.12.2-4+:universal"
deobfCompile "cofh:CoFHWorld:1.12.2-1+:universal"
deobfCompile "slimeknights:TConstruct:1.12.2-2.9.1.70"
deobfCompile "slimeknights:TConstruct:1.12.2-2.10.1.518"
deobfCompile "slimeknights.mantle:Mantle:1.12-1.3.2.38"
deobfCompile "immersive-engineering:ImmersiveEngineering:0.12:89"
deobfCompile "p455w0rd:p455w0rdslib:1.12.2-2.0.36"
deobfCompile "info.loenwind.autoconfig:AutoConfig:1.12.2-1.0.1"
deobfCompile "info.loenwind.autosave:AutoSave:1.12.2-1.0.8"
deobfCompile "com.enderio.core:EnderCore:1.12.2-0.5.44"
deobfCompile ("com.enderio:EnderIO:1.12.2-5.0.39") {
transitive = false
}
}

processResources {
Expand Down
20 changes: 13 additions & 7 deletions src/main/java/p455w0rd/endermanevo/EndermanEvolution.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package p455w0rd.endermanevo;

import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.Mod.Instance;
import net.minecraftforge.fml.common.SidedProxy;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.event.*;
import p455w0rd.endermanevo.init.ModGlobals;
import p455w0rd.endermanevo.proxy.CommonProxy;

Expand All @@ -13,18 +14,23 @@ public class EndermanEvolution {
@SidedProxy(clientSide = ModGlobals.CLIENT_PROXY, serverSide = ModGlobals.SERVER_PROXY)
public static CommonProxy PROXY;

@Mod.Instance("endermanevo")
@Instance("endermanevo")
public static EndermanEvolution INSTANCE;

@Mod.EventHandler
public void preInit(FMLPreInitializationEvent e) {
@EventHandler
public void preInit(final FMLPreInitializationEvent e) {
INSTANCE = this;
PROXY.preInit(e);
}

@Mod.EventHandler
public void init(FMLInitializationEvent e) {
@EventHandler
public void init(final FMLInitializationEvent e) {
PROXY.init(e);
}

@EventHandler
public void postInit(final FMLPostInitializationEvent e) {
PROXY.postInit(e);
}

}
Loading

0 comments on commit caab7ec

Please sign in to comment.