From 04e8800e713c8f4f412264ff59738760217cc307 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 30 Aug 2016 19:16:18 +0100 Subject: [PATCH 1/3] Added cut -f1 -d "/" --- lgsm/functions/info_config.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index c6cbddace..df744e414 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -12,6 +12,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" # tr -cd '[:digit:]' leave only digits # tr -d '=\"; ' remove selected characters =\"; # grep -v "foo" filter out lines that contain foo +# cut -f1 -d "/" remove everything after / unavailable="${red}UNAVAILABLE${default}" zero="${red}0${default}" @@ -194,9 +195,9 @@ fn_info_config_source(){ serverpassword="${unavailable}" rconpassword="${unavailable}" else - servername=$(grep "hostname" "${servercfgfullpath}" | sed 's/hostname //g' | sed 's/"//g') - serverpassword=$(grep "sv_password" "${servercfgfullpath}" | sed 's/sv_password //g' | sed 's/"//g') - rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed 's/rcon_password //g' | sed 's/"//g') + servername=$(grep "hostname" "${servercfgfullpath}" | sed 's/hostname //g' | sed 's/"//g'| cut -f1 -d "/") + serverpassword=$(grep "sv_password" "${servercfgfullpath}" | sed 's/sv_password //g' | sed 's/"//g'| cut -f1 -d "/") + rconpassword=$(grep "rcon_password" "${servercfgfullpath}" | sed 's/rcon_password //g' | sed 's/"//g'| cut -f1 -d "/") # Not Set servername=${servername:-"NOT SET"} @@ -415,7 +416,7 @@ if [ "${engine}" == "avalanche" ]; then # Dont Starve Together elif [ "${engine}" == "dontstarve" ]; then fn_info_config_dontstarve -# Quake Love +# Quake Live elif [ "${engine}" == "idtech3" ]; then fn_info_config_idtech3 # Minecraft From f92f4b4e0e195aed6767ab6c18461ad549d1469a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 30 Aug 2016 19:25:32 +0100 Subject: [PATCH 2/3] glibcfix currently not working for ge:s --- lgsm/functions/info_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 40ed32cde..9bc71172d 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -28,7 +28,7 @@ elif [ "${gamename}" == "Garry's Mod" ]; then glibcfix="yes" elif [ "${gamename}" == "GoldenEye: Source" ]; then glibcrequired="2.15" - glibcfix="yes" + glibcfix="no" elif [ "${gamename}" == "Insurgency" ]; then glibcrequired="2.15" glibcfix="yes" From 6b47faf5f915735e28820cfd3f8adf576c3d450e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 30 Aug 2016 19:46:06 +0100 Subject: [PATCH 3/3] date --- GoldenEyeSource/gesserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GoldenEyeSource/gesserver b/GoldenEyeSource/gesserver index af53e6bdf..641258936 100644 --- a/GoldenEyeSource/gesserver +++ b/GoldenEyeSource/gesserver @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="210516" +version="300816" #### Variables ####