diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 694a3407f..ccf99dfe0 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -41,6 +41,7 @@ fn_info_config_justcause2(){ fn_info_config_justcause3(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" + serverdescription="${unavailable}" serverpassword="${unavailable}" maxplayers="${zero}" port="${zero}" @@ -48,6 +49,8 @@ fn_info_config_justcause3(){ steamport="${zero}" tickrate="${zero}" else + servername=$(grep "name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverdescription=$(grep "description" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/description//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') serverpassword=$(grep "password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') maxplayers=$(grep "\"maxPlayers\"" "${servercfgfullpath}" | tr -cd '[:digit:]') port=$(grep "\"port\"" "${servercfgfullpath}" | tr -cd '[:digit:]') @@ -61,6 +64,7 @@ fn_info_config_justcause3(){ # Not Set servername=${servername:-"NOT SET"} + serverdescription=${servername:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"} maxplayers=${maxplayers=:-"0"} port=${port=:-"0"} diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 8f0729926..b3ae5c9e3 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -126,6 +126,11 @@ fn_info_message_gameserver(){ echo -e "${blue}Server name:\t${default}${servername}" fi + # Server description + if [ -n "${serverdescription}" ]; then + echo -e "${blue}Server name:\t${default}${serverdescription}" + fi + # Branch if [ -n "${branch}" ]; then echo -e "${blue}Branch:\t${default}${branch}"