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
parent
commit
920657e774
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      lgsm/functions/info_game.sh

11
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}")
serverpassword=${serverpassword:-"NOT SET"}
configip=${configip:-"0.0.0.0"}
fi
queryport=${port:-"0"}
serverpassword=${serverpassword:-"NOT SET"}
configip=${configip:-"0.0.0.0"}
}
fn_info_game_wet() {

Loading…
Cancel
Save