Add SupportDir argument to the launch-dedicated scripts.

This commit is contained in:
Paul Chote
2020-02-03 20:55:14 +00:00
committed by abcdefg30
parent 0e39c98989
commit ce445f993c
2 changed files with 7 additions and 2 deletions

View File

@@ -22,6 +22,8 @@ EnableSingleplayer="${EnableSingleplayer:-"False"}"
EnableSyncReports="${EnableSyncReports:-"False"}"
ShareAnonymizedIPs="${ShareAnonymizedIPs:-"True"}"
SupportDir="${SupportDir:-""}"
while true; do
mono --debug OpenRA.Server.exe Game.Mod="$Mod" \
Server.Name="$Name" \
@@ -34,5 +36,6 @@ while true; do
Server.ProfileIDBlacklist="$ProfileIDBlacklist" \
Server.ProfileIDWhitelist="$ProfileIDWhitelist" \
Server.EnableSyncReports="$EnableSyncReports" \
Server.ShareAnonymizedIPs="$ShareAnonymizedIPs"
Server.ShareAnonymizedIPs="$ShareAnonymizedIPs" \
Engine.SupportDir="$SupportDir"
done