Skip to content

Commit

Permalink
fix(server): fix --homedir arg for gradle task server (#4916)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkWeird authored Sep 30, 2021
1 parent c62e776 commit b858dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facades/PC/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ tasks.register<RunTerasology>("permissiveNatives") {
// TODO: Make a task to reset server / game data
tasks.register<RunTerasology>("server") {
description = "Starts a headless multiplayer server with data stored in [project-root]/$localServerDataPath"
args("--headless", "--homedir=$localServerDataPath")
args = listOf("--headless", "--homedir=$localServerDataPath")
}


Expand Down

0 comments on commit b858dac

Please sign in to comment.