Browse Source

added ipchecking to idtech3 engine

pull/1123/head
Daniel Gibbs 9 years ago
parent
commit
f13a24c5fb
  1. 5
      lgsm/functions/info_config.sh

5
lgsm/functions/info_config.sh

@ -164,7 +164,6 @@ fn_info_config_idtech3(){
rconpassword="${unavailable}" rconpassword="${unavailable}"
servername="${unavailable}" servername="${unavailable}"
serverpassword="${unavailable}" serverpassword="${unavailable}"
slots="${zero}" slots="${zero}"
else else
rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | xargs -0) rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | xargs -0)
@ -177,6 +176,10 @@ fn_info_config_idtech3(){
servername=${servername:-"NOT SET"} servername=${servername:-"NOT SET"}
serverpassword=${serverpassword:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"}
slots=${slots:-"0"} slots=${slots:-"0"}
ipconfigcheck=$(grep "net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/net_ip//g' | tr -d '=\";,:' | xargs -0)
if [ -n "${ipconfigcheck}" ]; then
ip="${ipconfigcheck}"
fi
fi fi
} }

Loading…
Cancel
Save