Browse Source

Merge branch 'develop' into feature/sdtdserver-telnet

pull/2150/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
abf6fecb8b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      lgsm/functions/info_config.sh

4
lgsm/functions/info_config.sh

@ -921,7 +921,7 @@ fn_info_config_sdtd(){
servername=$(grep "ServerName" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
serverpassword=$(grep "ServerPassword" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
port=$(grep "ServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
queryport=$((port + 1))
queryport=${port:-"0"}
webadminenabled=$(grep "ControlPanelEnabled" "${servercfgfullpath}" | sed 's/^.*value="//' | cut -f1 -d"\"")
webadminport=$(grep "ControlPanelPort" "${servercfgfullpath}" | tr -cd '[:digit:]')
@ -1253,4 +1253,4 @@ elif [ "${shortname}" == "squad" ]; then
# Stationeers
elif [ "${shortname}" == "st" ]; then
fn_info_config_stationeers
fi
fi

Loading…
Cancel
Save