Update to MC 1.7.10, bump to 10.13.0

MinecraftForge/FML@bc420dcb0b Fix Eclipse launching attribute
MinecraftForge/FML@1e0134a1ca Merge pull request #455 from rumickon/feature
MinecraftForge/FML@1c5db211af Update for release 1.7.10
MinecraftForge/FML@79a0c5e559 Merge branch 'mc179'
This commit is contained in:
cpw 2014-06-26 15:06:07 -04:00
parent f1c7a2c134
commit ebf0e7617a
4 changed files with 6 additions and 5 deletions

View File

@ -34,7 +34,7 @@ repositories {
}
minecraft {
version = '1.7.10-pre4'
version = '1.7.10'
mcpVersion = '9.05'
fmlDir = projectDir.getAbsolutePath() + "/fml";
mainClass = 'cpw.mods.fml.relauncher.ServerLaunchWrapper'

2
fml

@ -1 +1 @@
Subproject commit 8f7adced471951c798cfa6844b0abc176c93d19b
Subproject commit 79a0c5e55905f0f08471d026b744a563ea421236

View File

@ -21,9 +21,9 @@ public class ForgeVersion
//This number is incremented every time we remove deprecated code/major API changes, never reset
public static final int majorVersion = 10;
//This number is incremented every minecraft release, never reset
public static final int minorVersion = 12;
public static final int minorVersion = 13;
//This number is incremented every time a interface changes or new major feature is added, and reset every Minecraft version
public static final int revisionVersion = 2;
public static final int revisionVersion = 0;
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
public static final int buildVersion = 0;

View File

@ -1,6 +1,7 @@
package net.minecraftforge.common;
import cpw.mods.fml.common.FMLLog;
import cpw.mods.fml.common.Loader;
import cpw.mods.fml.common.eventhandler.EventBus;
import net.minecraft.crash.CrashReport;
import net.minecraft.item.ItemStack;
@ -20,7 +21,7 @@ public class MinecraftForge
public static final EventBus EVENT_BUS = new EventBus();
public static final EventBus TERRAIN_GEN_BUS = new EventBus();
public static final EventBus ORE_GEN_BUS = new EventBus();
public static final String MC_VERSION = "1.7.10";
public static final String MC_VERSION = Loader.MC_VERSION;
static final ForgeInternalHandler INTERNAL_HANDLER = new ForgeInternalHandler();