Browse Source
fix(inssserver): correct hostname parameter
pull/2215/head
Daniel Gibbs
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lgsm/config-default/config-lgsm/inssserver/_default.cfg
|
|
@ -23,7 +23,7 @@ maxplayers="28" |
|
|
|
fn_parms(){ |
|
|
|
# Allows serverpassword to work with parameters |
|
|
|
if [ "${serverpassword}" != "NOT SET" ]; then |
|
|
|
parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport}?password="${serverpassword}" -hostname="${servername}" -log" |
|
|
|
parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport}?password="${serverpassword}" -hostname='${servername}' -log" |
|
|
|
else |
|
|
|
parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport} -hostname='${servername}' -log" |
|
|
|
fi |
|
|
|