Fix args in linux server scripts

Looks like a typo.
Any args passed to the openra-{MOD}-server scripts were not correctly passed to OpenRA.Server.exe.
The client/game ones are fine.
(I guess "$$@" resolves to a PID with an '@' hanging off it)
This commit is contained in:
quinno
2018-05-02 21:02:22 +10:00
committed by abcdefg30
parent bf4b91741a
commit f453d9c148

View File

@@ -1,4 +1,4 @@
#!/bin/sh
cd "{GAME_INSTALL_DIR}"
mono {DEBUG} OpenRA.Server.exe Game.Mod={MOD} "$$@"
mono {DEBUG} OpenRA.Server.exe Game.Mod={MOD} "$@"