From 731ba282acc448ee2de6f31a7aa00a981e0510ce Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 4 Jul 2015 18:18:55 +0100 Subject: [PATCH] scriptlog is deactivated if scriptlogdir no exist --- functions/fn_check_steamuser | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/functions/fn_check_steamuser b/functions/fn_check_steamuser index 7aa7f4c69..5080c98d8 100644 --- a/functions/fn_check_steamuser +++ b/functions/fn_check_steamuser @@ -2,14 +2,18 @@ # LGSM fn_check_steamuser function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 190515 +# Version: 040715 if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ]; then fn_printwarnnl "Steam login not set. Using anonymous login." - fn_scriptlog "Steam login not set. Using anonymous login." + if [ -d ${scriptlogdir} ]; then + fn_scriptlog "Steam login not set. Using anonymous login." + fi if [ "${steamuser}" == "username" ]; then echo " * Change steamuser=\"username\" to a valid steam login." - fn_scriptlog "Change steamuser=\"username\" to a valid steam login." + if [ -d ${scriptlogdir} ]; then + fn_scriptlog "Change steamuser=\"username\" to a valid steam login." + fi fi steamuser="anonymous" steampass=""