Browse Source

fix(mta): update xml parsing

The `fn_info_game_mta` function in the `info_game.sh` file has been refactored to update the parameters passed to the `fn_info_game_xml` function. The parameter names have been changed from "port" to "serverport", "httpport" to "httpport", "servername" to "servername", "maxplayers" to "maxplayers", and "ase" to "ase". This change improves code readability and consistency.
pull/4262/head
Daniel Gibbs 2 years ago
parent
commit
7f4111d167
  1. 10
      lgsm/modules/info_game.sh

10
lgsm/modules/info_game.sh

@ -1441,11 +1441,11 @@ fn_info_game_mom() {
# Filetype: conf
fn_info_game_mta() {
if [ -f "${servercfgfullpath}" ]; then
fn_info_game_xml "port" "/config/@port"
fn_info_game_xml "httpport" "/config/@httpport"
fn_info_game_xml "servername" "/config/@servername"
fn_info_game_xml "maxplayers" "/config/@maxplayers"
fn_info_game_xml "ase" "/config/@ase"
fn_info_game_xml "port" "/config/serverport"
fn_info_game_xml "httpport" "/config/httpport"
fn_info_game_xml "servername" "/config/servername"
fn_info_game_xml "maxplayers" "/config/maxplayers"
fn_info_game_xml "ase" "/config/ase"
fi
if [ "${ase}" == "1" ]; then
ase="Enabled"

Loading…
Cancel
Save