From 9b9b96ab3b338a84e958891bfc4c6b72870c52a7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 19 Feb 2016 20:39:49 +0000 Subject: [PATCH] Got server password working --- functions/info_config.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/functions/info_config.sh b/functions/info_config.sh index 884cdbe57..9bb5cde98 100644 --- a/functions/info_config.sh +++ b/functions/info_config.sh @@ -2,7 +2,7 @@ # LGSM info_config.sh function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -lgsm_version="060116" +lgsm_version="190216" # Description: Gets specific details from config files. @@ -170,7 +170,8 @@ elif [ "${engine}" == "idtech3" ]; then # server password if [ -f "${servercfgfullpath}" ]; then - serverpassword=$(grep "set g_password" "${servercfgfullpath}" | grep -v "//" | sed -e 's/set g_password//g' | tr -d '=\"; ') + + serverpassword=$(grep "set g_password" "${servercfgfullpath}" | sed -e 's/set g_password//g' | tr -d '=\"; '| cut -f1 -d "/") if [ ! -n "${serverpassword}" ]; then serverpassword="NOT SET" fi