From f03745ce454017b915fd8b18dc87baaac8d9e7d4 Mon Sep 17 00:00:00 2001 From: LexManos Date: Mon, 23 Sep 2019 02:46:43 +0000 Subject: [PATCH] Fix timezone issue with the installer. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 59451db88..c821549d0 100644 --- a/build.gradle +++ b/build.gradle @@ -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())