Skip to content

Commit

Permalink
Add Multiprocess option to launch script in multiplayer
Browse files Browse the repository at this point in the history
  • Loading branch information
budak7273 committed Dec 11, 2024
1 parent c629157 commit 8f2beda
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/ROOT/pages/Development/TestingResources.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,9 @@ function PrepareArgs([string]$baseArgs, [switch]$applyFirstInstanceOnlyArguments
}
}
if ($multiplayer) {
# Satisfactory specific. More consistent multiplayer GUIDs
$buildArgs = "$buildArgs", "-CustomConfig="
# CustomConfig: Satisfactory specific. More consistent multiplayer GUIDs
# Multiprocess: Make the game not write user settings and other .ini files (unsafe operation while multiple copies are open)
$buildArgs = "$buildArgs", "-CustomConfig=", "-Multiprocess"
}
return $buildArgs
}
Expand Down

0 comments on commit 8f2beda

Please sign in to comment.