Browse Source

Tower Unite bypasses GSLT input and only informs user

pull/1310/head
Daniel Gibbs 8 years ago
parent
commit
f2901c0e94
  1. 19
      lgsm/functions/install_gslt.sh

19
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" fn_script_log_info "https://gameservermanagers.com/gslt"
echo "" echo ""
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "Enter token below (Can be blank)." if [ "${gamename}" != "Tower Unite" ];then
echo -n "GSLT TOKEN: " echo "Enter token below (Can be blank)."
read token echo -n "GSLT TOKEN: "
sed -i -e "s/gslt=\"\"/gslt=\"${token}\"/g" "${rootdir}/${selfname}" read token
sed -i -e "s/gslt=\"\"/gslt=\"${token}\"/g" "${rootdir}/${selfname}"
fi
fi fi
sleep 1 sleep 1
echo "The GSLT can be changed by editing ${selfname}." if [ "${gamename}" == "Tower Unite" ];then
fn_script_log_info "The GSLT can be changed by editing ${selfname}." 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 "" echo ""
Loading…
Cancel
Save