Update to 1.12.2

This commit is contained in:
Jonas Herzig
2017-09-19 10:35:32 +02:00
parent cfb990ad43
commit f2755f6e1f
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.1-14.22.0.2444'
version = '1.12.2-14.23.0.2486'
runDir = "eclipse"
mappings = "snapshot_20170615"
replace '@MOD_VERSION@', project.version
@@ -71,7 +71,7 @@ dependencies {
shade 'org.aspectj:aspectjrt:1.8.2'
shade 'com.github.replaymod:ReplayStudio:f1d6fbb'
shade 'com.github.ReplayMod:ReplayStudio:ecb6992'
testCompile 'junit:junit:4.11'
}

View File

@@ -8,7 +8,8 @@ public enum MinecraftVersion {
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_1("Minecraft 1.12.1", "1.12.1");
MC_1_12_1("Minecraft 1.12.1", "1.12.1"),
MC_1_12_2("Minecraft 1.12.2", "1.12.2");
private String niceName, apiName;