1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-06 12:33:01 +02:00

Revert default steamcmd flag to 0

This commit is contained in:
aclist 2022-06-15 10:03:38 +09:00 committed by GitHub
parent b1d7e89f02
commit 9c5b00fa21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,12 @@ whitelist=""
fav=""
name="player"
separator="│"
ping=1
debug=0
ping="1"
debug="0"
#END CONFIG================
#STEAMCMD CONFIG===========
auto_install_mods=1
auto_install_mods="0"
steamcmd_user="steam"
steam_username="STEAMUSER"
staging_dir="/tmp"
@ -121,7 +121,7 @@ columnize(){
test_fav(){
if [[ -n $fav ]]; then
if [[ $(echo -e "${tabled[$i]}" | awk -F'\t' -v fav=$fav '$5 == fav') ]] ; then
printf "%s│%s\n" "$i" "${tabled[$i]}"
printf "%s│%s\n" "$i" "${tabled[$i]}"
else
printf "%s│ %s\n" "$i" "${tabled[$i]}"
fi