diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index fe5ee246d..ec94e0426 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -84,7 +84,7 @@ fn_monitor_tmux(){ do if [ "${allowed_engine}" == "starbound" ]; then info_config.sh - if [ "${rconenabled}" == "true" ]; then + if [ "${queryenabled}" == "true" ]; then monitor_gsquery.sh fi elif [ "${allowed_engine}" == "${engine}" ]; then diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 5a51b7b08..ebe0d8d41 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -455,6 +455,7 @@ fn_info_config_source(){ fn_info_config_starbound(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" + queryenabled="${unavailable}" rconenabled="${unavailable}" rconpassword="${unavailable}" port="21025" @@ -463,7 +464,8 @@ fn_info_config_starbound(){ maxplayers="8" else servername=$(grep "serverName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/serverName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - rconenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + queryenabled=$(grep "runQueryServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runQueryServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + rconenabled=$(grep "runRconServer" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/runRconServer//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') rconpassword=$(grep "rconServerPassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e 's/rconServerPassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') port=$(grep "gameServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') queryport=$(grep "queryServerPort" "${servercfgfullpath}" | tr -cd '[:digit:]') diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 78f1db000..5cf46a89a 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -146,6 +146,16 @@ fn_info_message_gameserver(){ echo -e "${blue}Server password:\t${default}${serverpassword}" fi + # Query enabled (Starbound) + if [ -n "${queryenabled}" ]; then + echo -e "${blue}Query enabled:\t${default}${rconpassword}" + fi + + # RCON enabled (Starbound) + if [ -n "${rconenabled}" ]; then + echo -e "${blue}RCON enabled:\t${default}${rconpassword}" + fi + # RCON password if [ -n "${rconpassword}" ]; then echo -e "${blue}RCON password:\t${default}${rconpassword}"