Skip to content

Commit

Permalink
Use correct ModPatcher version
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Sep 2, 2016
1 parent 3149b65 commit 9400d1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ configurations {
}
}

ext.mcVersion = "1.10"
ext.mcVersion = "1.10.2"
ext.runMcVersion = "1.10.2"
ext.forgeVersion = "12.18.0.1996-1.10.0"
ext.forgeVersion = "12.18.1.2076"
ext.forgeMappings = "snapshot_20160518"
group = "nallar.tickprofiler" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "TickProfiler"
Expand Down Expand Up @@ -50,7 +50,7 @@ configurations.all {
dependencies {
bundledLibs 'org.codehaus.jackson:jackson-core-lgpl:1.9.13'
bundledLibs 'org.codehaus.jackson:jackson-mapper-lgpl:1.9.13'
bundledLibs 'me.nallar:ModPatcher:1.10-SNAPSHOT:api'
bundledLibs "me.nallar:ModPatcher:$mcVersion-SNAPSHOT:api"
compile 'org.projectlombok:lombok:1.16.6'
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/nallar/tickprofiler/minecraft/CoreMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@IFMLLoadingPlugin.SortingIndex(1001)
public class CoreMod implements IFMLLoadingPlugin {
static {
ModPatcher.requireVersion("1.10.1");
ModPatcher.requireVersion("1.10.2.1");
}

@Override
Expand Down

0 comments on commit 9400d1b

Please sign in to comment.