From 64d21a1b88cc5d1dcd977c8d8e22df62a5b0eac2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 9 Apr 2019 20:00:55 +0100 Subject: [PATCH] fix(mcserver):correct minecraft port info (#2284) --- lgsm/functions/info_config.sh | 8 ++++---- lgsm/functions/info_messages.sh | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 5c07f44ad..53b7637c6 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,6 +320,7 @@ fn_info_config_inss(){ rconport=${rconport:-"0"} fi } + fn_info_config_minecraft(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -329,7 +330,6 @@ fn_info_config_minecraft(){ port="${zero}" queryport="${zero}" queryenabled="${unavailable}" - rconport="${zero}" gamemode="${unavailable}" gameworld="${unavailable}" else @@ -338,9 +338,8 @@ fn_info_config_minecraft(){ rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') maxplayers=$(grep "max-players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - queryport=$(grep "query.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + queryport="${port}" queryenabled=$(grep "enable-query" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/enable-query//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') @@ -354,9 +353,10 @@ fn_info_config_minecraft(){ rconport=${rconport:-"NOT SET"} maxplayers=${maxplayers:-"NOT SET"} port=${port:-"NOT SET"} + queryport="${queryport:-"NOT SET"}" + queryenabled="${queryenabled:-"NOT SET"}" gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} - fi } diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 5080334dc..020b1b238 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -78,7 +78,7 @@ fn_info_message_performance(){ echo -e "${blue}CPU Model:\t${default}${cpumodel}" echo -e "${blue}CPU Cores:\t${default}${cpucores}" echo -e "${blue}CPU Frequency:\t${default}${cpufreuency}" - } | column -s $'\t' -t + } | column -s $'\t' -t echo -e "" { echo -e "${blue}Mem:\t${blue}total\tused\tfree\tcached\tavailable${default}" @@ -737,8 +737,8 @@ fn_info_message_minecraft(){ { echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" echo -e "> Game\tINBOUND\t${port}\ttcp" - echo -e "> Game\tINBOUND\t${queryport}\tudp" - echo -e "> Game\tINBOUND\t${rconport}\ttcp" + echo -e "> Query\tINBOUND\t${queryport}\tudp" + echo -e "> Rcon\tINBOUND\t${rconport}\ttcp" } | column -s $'\t' -t }