From ee76be76cf89891e8506780845c727284714cb88 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 27 Feb 2016 21:59:26 +0000 Subject: [PATCH] Added message explaining multiple dl attempts --- functions/install_server_files.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/functions/install_server_files.sh b/functions/install_server_files.sh index 8f152db84..b09cc0ba2 100644 --- a/functions/install_server_files.sh +++ b/functions/install_server_files.sh @@ -28,8 +28,8 @@ while [ "${counter}" == "0" ]||[ "${exitcode}" != "0" ]; do # Attempt 11: Failure if [ "${counter}" -ge "2" ]; then - fn_printwarningnl "SteamCMD did not complete the download, retrying: Attempt ${counter}:" - fn_scriptlog "SteamCMD did not complete the download, retrying: Attempt ${counter}:" + fn_printwarningnl "SteamCMD did not complete the download, retrying: Attempt ${counter}" + fn_scriptlog "SteamCMD did not complete the download, retrying: Attempt ${counter}" fi if [ "${counter}" -ge "7" ]; then @@ -73,6 +73,7 @@ done # Goldsource servers commonly fail to download all the server files required. # Validating a few of times may reduce the chance of this issue. if [ "${engine}" == "goldsource" ]; then + fn_printinfomationnl "Goldsource servers commonly fail to download all the server files required. Validating a few of times may reduce the chance of this issue." counter="0" while [ "${counter}" -le "4" ]; do counter=$((counter+1))