Merge branch '1.12.1-dev' into 1.12.1-reprod

This commit is contained in:
Jonas Herzig
2017-10-28 19:34:38 +02:00
2 changed files with 4 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ archivesBaseName = "replaymod"
minecraft {
coreMod = 'com.replaymod.core.LoadingPlugin'
version = '1.12-14.21.1.2387'
version = '1.12.1-14.22.0.2444'
runDir = "eclipse"
mappings = "snapshot_20170615"
replace '@MOD_VERSION@', project.version
@@ -69,7 +69,7 @@ dependencies {
shade 'org.aspectj:aspectjrt:1.8.2'
shade 'com.github.replaymod:ReplayStudio:21626be'
shade 'com.github.replaymod:ReplayStudio:77dc1d7'
testCompile 'junit:junit:4.11'
}

View File

@@ -7,7 +7,8 @@ public enum MinecraftVersion {
MC_1_10_2("Minecraft 1.10.2", "1.10.2"),
MC_1_11("Minecraft 1.11", "1.11"),
MC_1_11_2("Minecraft 1.11.2", "1.11.2"),
MC_1_12("Minecraft 1.12", "1.12");
MC_1_12("Minecraft 1.12", "1.12"),
MC_1_12_1("Minecraft 1.12.1", "1.12.1");
private String niceName, apiName;