Browse Source

Update query_gamedig.sh

- Re-worked if statement for Minecraft servers to not subtract 1 from the length of the player count.
pull/4725/head
Jimmy Maple 3 months ago
committed by GitHub
parent
commit
6f91a262bb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      lgsm/functions/query_gamedig.sh

2
lgsm/functions/query_gamedig.sh

@ -32,8 +32,6 @@ if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ];
# numplayers.
if [ "${querytype}" == "minecraft" ]; then
gdplayers=$(echo "${gamedigraw}" | jq -re '.players | length-1')
else
gdplayers=$(echo "${gamedigraw}" | jq -re '.players | length')
fi
if [ "${gdplayers}" == "null" ]; then

Loading…
Cancel
Save