From c62af53ba39525770a8e4310027316a2f3491b6f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 15 Apr 2015 22:45:03 +0100 Subject: [PATCH] Added fn_steamcmdcheck bypass for goldsource Goldsource servers will now bypass checks as fn_steamcmdcheck does not work for appid 90 servers. I might be able to get this to work however it is rather complicated. This may be something I do in the future --- functions/fn_update_check | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/functions/fn_update_check b/functions/fn_update_check index d37ce43c6..d00f1720d 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -271,6 +271,16 @@ fi fn_printdots "Checking for update" if [ "${gamename}" == "Teamspeak 3" ]; then fn_teamspeak3_check +if [ "${engine}" == "goldsource" ]; then + # Goldsource servers bypass checks as fn_steamcmdcheck does not work for appid 90 servers. + tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) + if [ "${tmuxwc}" -eq 1 ]; then + fn_stop + fn_update_dl + fn_start + else + fn_update_dl + fi else fn_logupdaterequest fn_steamcmdcheck