Fix timezone issue with the installer.

This commit is contained in:
LexManos 2019-09-23 02:46:43 +00:00
parent 48cf910626
commit f03745ce45
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ project(':forge') {
MCP_ARTIFACT = project(':mcp').mcp.config
SPECIAL_SOURCE = 'net.md-5:SpecialSource:1.8.5'
VERSION_JSON = project(':mcp').file('build/mcp/downloadJson/version.json')
BINPATCH_TOOL = 'net.minecraftforge:binarypatcher:1.0.6:fatjar'
BINPATCH_TOOL = 'net.minecraftforge:binarypatcher:1.0.7:fatjar'
}
def getVersion = {
@ -743,7 +743,7 @@ project(':forge') {
ext {
output = file('build/install_profile.json')
INSTALLER_TOOLS = 'net.minecraftforge:installertools:1.1.4'
JAR_SPLITTER = 'net.minecraftforge:jarsplitter:1.1.1'
JAR_SPLITTER = 'net.minecraftforge:jarsplitter:1.1.2'
}
doFirst {
ext.BIN_PATCHER = BINPATCH_TOOL.substring(0, BINPATCH_TOOL.length() - 1 - BINPATCH_TOOL.split(':')[3].length())