Răsfoiți Sursa

Update _default.cfg

NYPD 7 ani în urmă
părinte
comite
7f38d35ab6
1 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 3 3
      lgsm/config-default/config-lgsm/inssserver/_default.cfg

+ 3 - 3
lgsm/config-default/config-lgsm/inssserver/_default.cfg

@@ -21,10 +21,10 @@ maxplayers="28"
 
 ## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
 fn_parms(){
-if [ "${serverpassword}" != "" ]; then
-parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport}?password=${serverpassword} -hostname='${servername}' -log"
-else
+if [ -z "${serverpassword}" ]; then
 parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport} -hostname='${servername}' -log"
+else
+parms="${defaultmap}?Scenario=${defaultscenario}?MaxPlayers=${maxplayers}?Port=${port}?QueryPort=${queryport}?password=${serverpassword} -hostname='${servername}' -log"
 fi
 }