Merge pull request #8206 from baxxxster/bleed

Added possibility to use spaces in Server.Name
This commit is contained in:
Igor Popov
2015-05-21 12:25:25 +03:00

View File

@@ -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