Skip to content

Commit d7c1530

Browse files
committed
mindustry v151.1 port + installClient & runClient
1 parent 7930d9f commit d7c1530

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ tasks.register('installClient', DefaultTask) {
171171
return
172172
}
173173

174-
String clientVersion = mindustryVersionProp
174+
String clientVersion = mindustryVersionProp.get()
175175
def clientFile = mindustryPath.child("client-${clientVersion}.jar")
176176

177177
if (clientFile.exists()) {
@@ -232,7 +232,7 @@ tasks.register('runClient', DefaultTask) {
232232
def mindustrySaves = mindustryPath
233233
if(isSteam) mindustrySaves = mindustrySaves.child("saves")
234234

235-
String clientVersion = mindustryVersionProp
235+
String clientVersion = mindustryVersionProp.get()
236236
def clientFile = mindustryPath.child("client-${clientVersion}.jar")
237237
if(isSteam) clientFile = mindustryPath.child("Mindustry.exe")
238238

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Mindustry classpath version
2-
mindustryVersion = v149
2+
mindustryVersion = v151.1
33
# Actual Mindustry hash that is used for fetching component classes
4-
mindustryFetchVersion = v149
4+
mindustryFetchVersion = v151.1
55
# Fallback Arc version, deviate from `mindustryVersion` if you're using a Bleeding Edge classpath version.
6-
arcVersion = v149
6+
arcVersion = v151.1
77
# Android SDK version.
88
sdkVersion = 33
99
# Minimum Android API version.

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Someone",
55
"description": "No description provided",
66
"version": "1.0",
7-
"minGameVersion": 149,
7+
"minGameVersion": 151.1,
88
"main": "template.Template",
99
"java": true,
1010
"hideBrowser": true

0 commit comments

Comments
 (0)