diff --git a/functions/fn_install_serverfiles b/functions/fn_install_serverfiles index a325095c9..2d28c438b 100644 --- a/functions/fn_install_serverfiles +++ b/functions/fn_install_serverfiles @@ -5,6 +5,12 @@ # Version: 050515 fn_steaminstallcommand(){ +if [ -z "${steamuser}" ]; then + fn_printwarningnl "SteamCMD user variable is not assigned in the main script! Resorting to anonymous login" + steamuser="anonymous" + steampass="" +fi + counter="0" while [ "${counter}" == "0" ]||[ "$(grep -wc 0x402 .fn_install_serverfiles.tmp)" -ge "1" ]||[ "$(grep -wc 0x406 .fn_install_serverfiles.tmp)" -ge "1" ]||[ "$(grep -wc 0x6 .fn_install_serverfiles.tmp)" -ge "1" ]||[ "$(grep -wc 0x106 .fn_install_serverfiles.tmp)" -ge "1" ]; do counter=$((counter+1)) @@ -75,4 +81,4 @@ if [ -z "${autoinstall}" ]; then * ) echo "Please answer yes or no.";; esac done -fi \ No newline at end of file +fi