Skip to content

Commit

Permalink
Change updateJSON to point to the version branch
Browse files Browse the repository at this point in the history
Also change acceptedMinecraftVersions
  • Loading branch information
ljfa-ag committed Jun 8, 2016
1 parent e2baa01 commit 916d9f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@ jar {
}

curseforge {
apiKey = project.curseForgeApiKey
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
project {
id = '227449'
changelog = ''
releaseType = 'alpha'
addGameVersion '1.9'
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ljfa/tntutils/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public class Reference {
public static final String CLIENT_PROXY_CLASS = "ljfa.tntutils.proxy.ClientProxy";
public static final String SERVER_PROXY_CLASS = "ljfa.tntutils.proxy.CommonProxy";
public static final String GUI_FACTORY_CLASS = "ljfa.tntutils.gui.TntuGuiFactory";
public static final String UPDATE_JSON = "https://raw.githubusercontent.com/ljfa-ag/TNTUtils/master/version.json";
public static final String UPDATE_JSON = "https://raw.githubusercontent.com/ljfa-ag/TNTUtils/version/version.json";
}
2 changes: 1 addition & 1 deletion src/main/java/ljfa/tntutils/TNTUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@Mod(modid = Reference.MODID, name = Reference.MODNAME, version = Reference.VERSION, acceptableRemoteVersions = "*",
guiFactory = Reference.GUI_FACTORY_CLASS, dependencies = "required-after:tnt_utilities_core",
acceptedMinecraftVersions = "[1.9,)", updateJSON = Reference.UPDATE_JSON)
acceptedMinecraftVersions = "[1.9.4,1.10)", updateJSON = Reference.UPDATE_JSON)
public class TNTUtils {
@Mod.Instance(Reference.MODID)
public static TNTUtils instance;
Expand Down

0 comments on commit 916d9f3

Please sign in to comment.