Skip to content

Commit

Permalink
Version 2.0.1
Browse files Browse the repository at this point in the history
- Commented out the mod integrations to prevent crashes with
unimplemented mods
- Updated gradle dependencies
- Updated to Forge RB for gradle
  • Loading branch information
Jacky1356400 committed Jul 4, 2017
1 parent c71addf commit c541bba
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ repositories {

dependencies {
compile files('libs/')
deobfCompile "mezz.jei:jei_1.12:4.7.0.67:api"
runtime "mezz.jei:jei_1.12:4.7.0.67"
deobfCompile "mezz.jei:jei_1.12:4.7.0.68:api"
runtime "mezz.jei:jei_1.12:4.7.0.68"
deobfCompile "mcp.mobius.waila:Hwyla:1.8.18-B32_1.12:api"
runtime "mcp.mobius.waila:Hwyla:1.8.18-B32_1.12"
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx4G
mc_version=1.12
forge_version=14.21.0.2359
mod_version=2.0
forge_version=14.21.1.2387
mod_version=2.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import net.minecraftforge.fluids.UniversalBucket;

public class EnderIOIntegration {

/*
public static ItemStack capacitorBankBasic;
public static ItemStack capacitorBank;
public static ItemStack capacitorBankVibrant;
Expand Down Expand Up @@ -57,5 +57,5 @@ public static void init() {
bucketVaporOfLevity = UniversalBucket.getFilledBucket(ForgeModContainer.getInstance().universalBucket,
vaporOfLevity);
}

*/
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import net.minecraft.util.ResourceLocation;

public class MekanismIntegration {

/*
public static ItemStack circuitBasic;
public static ItemStack circuitAdvanced;
public static ItemStack circuitElite;
Expand Down Expand Up @@ -41,4 +41,5 @@ public static void init() {
portableTeleporter = new ItemStack(portableTeleporterItem, 1, 0);
}
}
*/
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import net.minecraftforge.fluids.UniversalBucket;

public class ThermalExpansionIntegration {

/*
public static ItemStack fluxCapacitorBasic;
public static ItemStack fluxCapacitorHardened;
public static ItemStack fluxCapacitorReinforced;
Expand Down Expand Up @@ -53,4 +53,5 @@ public static void init() {
bucketGelidCryotheum = UniversalBucket.getFilledBucket(ForgeModContainer.getInstance().universalBucket,
cryotheum);
}
*/
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public void preInit(FMLPreInitializationEvent e) {
config = new Configuration(new File(configDir.getPath(), "exchangers.cfg"));
Config.readConfig();
MinecraftForge.EVENT_BUS.register(new ModRegistry());
/*
if ((Config.enderIOModule = true) && (Loader.isModLoaded(Data.EIO))) {
EnderIOIntegration.init();
}
Expand All @@ -39,6 +40,7 @@ public void preInit(FMLPreInitializationEvent e) {
if ((Config.mekanismModule = true) && (Loader.isModLoaded(Data.MEK))) {
MekanismIntegration.init();
}
*/
PacketHandler.registerMessages(Data.MODID);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/jacky1356400/exchangers/util/Data.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Data {
public static final String EIO = "enderio";
public static final String MEK = "mekanism";
public static final String THERMAL = "thermalexpansion";
public static final String VERSION = "1.12-2.0";
public static final String VERSION = "1.12-2.0.1";
public static final String MODID = "exchangers";
public static final String MODNAME = "Exchangers";
public static final CreativeTabs TAB = new CreativeTabs(MODID) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "exchangers",
"name": "Exchangers",
"description": "Block Exchangers.",
"version": "1.12-2.0",
"version": "1.12-2.0.1",
"mcversion": "1.12",
"url": "https://github.com/Jacky1356400/Exchangers",
"updateUrl": "",
Expand Down

0 comments on commit c541bba

Please sign in to comment.