Looks like on 1.14 the afterlife bot doesn't always populate client source and version.

This commit is contained in:
Pentarctagon 2022-05-06 16:41:14 -05:00
parent c9523e809c
commit 52ad51ab25
No known key found for this signature in database
GPG Key ID: 9456BC54A21DBFA0
3 changed files with 3 additions and 0 deletions

View File

@ -7,5 +7,6 @@ where YEAR(game.START_TIME) = YEAR(CURRENT_DATE - INTERVAL 1 MONTH)
and game.INSTANCE_UUID = player.INSTANCE_UUID
and game.GAME_ID = player.GAME_ID
and player.USER_ID != -1
and player.CLIENT_SOURCE != ''
group by GAME_DATE, player.CLIENT_SOURCE
order by GAME_DATE, player.CLIENT_SOURCE

View File

@ -10,6 +10,7 @@ from
and player.USER_ID != -1
and game.INSTANCE_UUID = player.INSTANCE_UUID
and game.GAME_ID = player.GAME_ID
and player.CLIENT_SOURCE != ''
) src
group by CLIENT_SOURCE
order by COUNT(*) desc

View File

@ -10,6 +10,7 @@ from
and game.INSTANCE_UUID = player.INSTANCE_UUID
and game.GAME_ID = player.GAME_ID
and player.USER_ID != -1
and player.CLIENT_VERSION != ''
) src
group by CLIENT_VERSION
order by COUNT(*) desc