Fix core module not being included in 1.7.10

Probably a remnant of when we used a different gradle version for it.
This commit is contained in:
Jonas Herzig
2019-06-23 13:30:25 +02:00
parent 862c8d9b36
commit 1f547f92ce

View File

@@ -3,11 +3,8 @@ def coreMcVersion = f.readLines().first() as int
def jGuiVersions = [] def jGuiVersions = []
def replayModVersions = [] def replayModVersions = []
if (coreMcVersion > 10710) {
jGuiVersions += ['core']
replayModVersions += ['core']
}
jGuiVersions += [ jGuiVersions += [
'core',
'1.7.10', '1.7.10',
'1.8', '1.8',
'1.8.9', '1.8.9',
@@ -17,6 +14,7 @@ jGuiVersions += [
'1.14.2', '1.14.2',
] ]
replayModVersions += [ replayModVersions += [
'core',
'1.7.10', '1.7.10',
'1.8', '1.8',
'1.8.9', '1.8.9',