Get 1.7.10 working with source remapping

Requires changing the 'core' version to 1.8 before compiling
This commit is contained in:
Jonas Herzig
2019-04-24 16:43:17 +02:00
parent 2ee91515f7
commit 7cff2e0cf3
7 changed files with 28 additions and 14 deletions

View File

@@ -4,14 +4,16 @@ def coreMcVersion = f.exists() ? f.readLines().first() as int : 11302
def jGuiVersions = []
def replayModVersions = []
if (gradle.gradleVersion.startsWith('3.')) {
if (coreMcVersion <= 10710) {
if (coreMcVersion <= 10800) { // allow 1.8 only to run The Preprocessor
jGuiVersions += ['core']
replayModVersions += ['core']
}
jGuiVersions += [
'1.8', // allow 1.8 only to run The Preprocessor
'1.7.10',
]
replayModVersions += [
'1.8', // allow 1.8 only to run The Preprocessor
'1.7.10',
]
} else {