1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43: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
set -o pipefail
version=5.3.3
version=5.3.3-beta.2
#CONSTANTS
aid=221100
@ -538,7 +538,7 @@ fetch_helpers_by_sum(){
["ui.py"]="f14772424461ec438579dec567db0634"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="e6752185dda9c0e35731bd0b95a3cb19"
["funcs"]="28728839c031ae99002860a546352455"
)
local author="aclist"
local repo="dztui"

View file

@ -1287,7 +1287,7 @@ launch(){
update_symlinks
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"
return 0
fi
@ -1312,13 +1312,14 @@ final_handshake(){
params+=("-nolauncher")
params+=("-nosplash")
params+=("-skipintro")
params+=("\"-name=$name\"")
params+=("\"-mod=$saved_mods\"")
params+=("-name=$name")
params+=("-mod=$saved_mods")
$steam_cmd -applaunch $aid "${params[@]}" &
until [[ $(is_dayz_running) -eq 1 ]]; do
sleep 0.1s
done
logger INFO "Caught DayZ process"
printf "\n"
return 6
}
manual_mod_install(){