diff --git a/launch-dedicated.sh b/launch-dedicated.sh index 51285222df..1d65a958bd 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -1,6 +1,6 @@ #!/bin/bash # example launch script, see https://github.com/OpenRA/OpenRA/wiki/Dedicated for details -Name="Dedicated-Server" +Name="Dedicated Server" Mod="ra" Dedicated="True" DedicatedLoop="True" @@ -10,6 +10,6 @@ AdvertiseOnline="False" while true; do mono --debug OpenRA.Game.exe Game.Mod=$Mod Server.Dedicated=$Dedicated Server.DedicatedLoop=$DedicatedLoop \ - Server.Name=$Name Server.ListenPort=$ListenPort Server.ExternalPort=$ExternalPort \ + Server.Name="$Name" Server.ListenPort=$ListenPort Server.ExternalPort=$ExternalPort \ Server.AdvertiseOnline=$AdvertiseOnline done