Skip to content

Commit 1245518

Browse files
Update Cleanroom version
1 parent 62bcccc commit 1245518

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ unimined.minecraft {
6464

6565
cleanroom {
6666
if (propertyBool('use_access_transformer')) {
67-
accessTransformer "${rootProject.projectDir}/src/main/resources/" + propertyString('access_transformer_locations')
67+
accessTransformer "${rootProject.projectDir}/src/main/resources/${propertyString('access_transformer_locations')}"
6868
}
69-
loader "0.3.27-alpha"
69+
loader "0.3.31-alpha"
7070
runs.auth.username = minecraft_username
7171
runs.all {
7272
def extraArgs = propertyString('extra_jvm_args')
7373
if (extraArgs != null && !extraArgs.trim().isEmpty()) {
74-
jvmArgs += extraArgs.split("\\s+").toList()
74+
jvmArgs += extraArgs.split { "\\s+" }.toList()
7575
}
7676
if (propertyBool('enable_foundation_debug')) {
7777
systemProperty("foundation.dump", "true")

0 commit comments

Comments
 (0)