File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/main/kotlin/net/mcbrawls/api/leaderboard Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11kotlin.code.style =official
22ktor_version =2.3.9
3- version =1.5.5
3+ version =1.5.6
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
391391 """
392392 SELECT
393393 player_id,
394- SUM(experience_amount ) value
394+ COUNT(player_id ) value
395395 FROM
396396 StatisticEvents
397397 WHERE
@@ -415,7 +415,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
415415 """
416416 SELECT
417417 player_id,
418- SUM(experience_amount ) value
418+ COUNT(player_id ) value
419419 FROM
420420 StatisticEvents
421421 WHERE
@@ -439,7 +439,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
439439 """
440440 SELECT
441441 player_id,
442- SUM(experience_amount ) value
442+ COUNT(player_id ) value
443443 FROM
444444 StatisticEvents
445445 WHERE
@@ -463,7 +463,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
463463 """
464464 SELECT
465465 player_id,
466- SUM(experience_amount ) value
466+ COUNT(player_id ) value
467467 FROM
468468 StatisticEvents
469469 WHERE
@@ -487,7 +487,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
487487 """
488488 SELECT
489489 player_id,
490- SUM(experience_amount ) value
490+ COUNT(player_id ) value
491491 FROM
492492 StatisticEvents
493493 WHERE
@@ -511,7 +511,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
511511 """
512512 SELECT
513513 player_id,
514- SUM(experience_amount ) value
514+ COUNT(player_id ) value
515515 FROM
516516 StatisticEvents
517517 WHERE
@@ -535,7 +535,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
535535 """
536536 SELECT
537537 player_id,
538- SUM(experience_amount ) value
538+ COUNT(player_id ) value
539539 FROM
540540 StatisticEvents
541541 WHERE
You can’t perform that action at this time.
0 commit comments