Browse Source
fix(vints): refactor to fix it when there is no config for the server (#3955)
pull/3963/head
Christian
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
7 deletions
-
lgsm/functions/info_game.sh
|
|
@ -2177,20 +2177,17 @@ fn_info_game_vints() { |
|
|
|
servername="${unavailable}" |
|
|
|
maxplayers="${unavailable}" |
|
|
|
serverpassword="${unavailable}" |
|
|
|
port="${unavailable}" |
|
|
|
queryport="${unavailable}" |
|
|
|
configip="${unavailable}" |
|
|
|
port="${port:-"0"}" |
|
|
|
else |
|
|
|
servername=$(jq -r '.ServerName' "${servercfgfullpath}") |
|
|
|
maxplayers=$(jq -r '.MaxClients' "${servercfgfullpath}") |
|
|
|
serverpassword=$(jq -r 'select(.Password != null) | .Password' "${servercfgfullpath}") |
|
|
|
port=$(jq -r '.Port' "${servercfgfullpath}") |
|
|
|
queryport=${port:-"0"} |
|
|
|
configip=$(jq -r 'select(.Ip != null) | .Ip' "${servercfgfullpath}") |
|
|
|
|
|
|
|
fi |
|
|
|
queryport=${port:-"0"} |
|
|
|
serverpassword=${serverpassword:-"NOT SET"} |
|
|
|
configip=${configip:-"0.0.0.0"} |
|
|
|
fi |
|
|
|
} |
|
|
|
|
|
|
|
fn_info_game_wet() { |
|
|
|