Browse Source
fix(mc): correct the of counting players online on Minecraft servers via gamedig
feature/4426-tf-fixes
Jimmy Maple
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
3 deletions
-
lgsm/modules/query_gamedig.sh
|
|
@ -42,9 +42,7 @@ if [ "$(command -v "${gamedigbinary}" 2> /dev/null)" ] && [ "$(command -v jq 2> |
|
|
|
fi |
|
|
|
|
|
|
|
# numplayers. |
|
|
|
if [ "${querytype}" == "minecraft" ]; then |
|
|
|
gdplayers=$(echo "${gamedigraw}" | jq -re '.players | length-1') |
|
|
|
elif [ "${querytype}" == "teamspeak3" ]; then |
|
|
|
if [ "${querytype}" == "teamspeak3" ]; then |
|
|
|
gdplayers=$(echo "${gamedigraw}" | jq -re '.raw.virtualserver_clientsonline') |
|
|
|
else |
|
|
|
gdplayers=$(echo "${gamedigraw}" | jq -re '.players | length') |
|
|
|