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

fix: pack player names correctly

This commit is contained in:
aclist 2024-08-04 07:57:37 +09:00
parent 9800e6b346
commit 56a6e7ac3d
2 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.3.3 version=5.3.3-beta.2
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -538,7 +538,7 @@ fetch_helpers_by_sum(){
["ui.py"]="f14772424461ec438579dec567db0634" ["ui.py"]="f14772424461ec438579dec567db0634"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="e6752185dda9c0e35731bd0b95a3cb19" ["funcs"]="28728839c031ae99002860a546352455"
) )
local author="aclist" local author="aclist"
local repo="dztui" local repo="dztui"

View file

@ -1287,7 +1287,7 @@ launch(){
update_symlinks update_symlinks
if [[ $debug -eq 1 ]]; then if [[ $debug -eq 1 ]]; then
local launch_options="$steam_cmd -applaunch $aid -connect=$ip:$gameport -nolauncher -nosplash \"-name=$name\" -skipintro \"-mod=$concat\"" local launch_options="$steam_cmd -applaunch $aid -connect=$ip:$gameport -nolauncher -nosplash -name=$name -skipintro -mod=$concat"
printf "Debug mode: these options would have been used to launch the game: $launch_options" printf "Debug mode: these options would have been used to launch the game: $launch_options"
return 0 return 0
fi fi
@ -1312,13 +1312,14 @@ final_handshake(){
params+=("-nolauncher") params+=("-nolauncher")
params+=("-nosplash") params+=("-nosplash")
params+=("-skipintro") params+=("-skipintro")
params+=("\"-name=$name\"") params+=("-name=$name")
params+=("\"-mod=$saved_mods\"") params+=("-mod=$saved_mods")
$steam_cmd -applaunch $aid "${params[@]}" & $steam_cmd -applaunch $aid "${params[@]}" &
until [[ $(is_dayz_running) -eq 1 ]]; do until [[ $(is_dayz_running) -eq 1 ]]; do
sleep 0.1s sleep 0.1s
done done
logger INFO "Caught DayZ process" logger INFO "Caught DayZ process"
printf "\n"
return 6 return 6
} }
manual_mod_install(){ manual_mod_install(){