1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 05:12:36 +01:00

-world=empty flag fix for servers with custom menu

This commit is contained in:
aclist 2021-12-31 15:43:54 +09:00 committed by GitHub
parent c891e9cfef
commit 30ba0c1c8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,9 +129,9 @@ launch(){
ip=$(echo -e "${tabled[$sel]}" | awk -F'\t' '{print $2}')
printf "[INFO] Connecting to: $connecting_to\n"
if [[ $debug -eq 1 ]]; then
printf "[DEBUG] steam -applaunch $aid -nolauncher -nosplash -skipintro -world=empty -connect=$ip \"-mod=$mods\"\n"
printf "[DEBUG] steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro \"-mod=$mods\"\n"
else
steam -applaunch $aid -nolauncher -nosplash -skipintro -world=empty -name=$name -connect=$ip \"-mod=$mods\"
steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro -name=$name \"-mod=$mods\"
printf "Good luck out there. DZTUI $version\n"
exit
fi