From f2901c0e946c612e3a3d4cfe3dad36fb273bd8db Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 10 Feb 2017 22:02:32 +0000 Subject: [PATCH] Tower Unite bypasses GSLT input and only informs user --- lgsm/functions/install_gslt.sh | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index c611e91a3..1c8f25194 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -26,12 +26,19 @@ fn_script_log_info "Get more info and a token here:" fn_script_log_info "https://gameservermanagers.com/gslt" echo "" if [ -z "${autoinstall}" ]; then - echo "Enter token below (Can be blank)." - echo -n "GSLT TOKEN: " - read token - sed -i -e "s/gslt=\"\"/gslt=\"${token}\"/g" "${rootdir}/${selfname}" + if [ "${gamename}" != "Tower Unite" ];then + echo "Enter token below (Can be blank)." + echo -n "GSLT TOKEN: " + read token + sed -i -e "s/gslt=\"\"/gslt=\"${token}\"/g" "${rootdir}/${selfname}" + fi fi sleep 1 -echo "The GSLT can be changed by editing ${selfname}." -fn_script_log_info "The GSLT can be changed by editing ${selfname}." +if [ "${gamename}" == "Tower Unite" ];then + echo "The GSLT can be changed by editing ${servercfg}." + fn_script_log_info "The GSLT can be changed by editing ${servercfg}." +else + echo "The GSLT can be changed by editing ${selfname}." + fn_script_log_info "The GSLT can be changed by editing ${selfname}." +fi echo "" \ No newline at end of file