Skip to content

Commit

Permalink
I made a boo boo
Browse files Browse the repository at this point in the history
  • Loading branch information
andantet committed Sep 9, 2024
1 parent 85b5dd2 commit 9cf4c8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
ktor_version=2.3.9
version=1.5.5
version=1.5.6
14 changes: 7 additions & 7 deletions src/main/kotlin/net/mcbrawls/api/leaderboard/LeaderboardTypes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -415,7 +415,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -439,7 +439,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -463,7 +463,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -487,7 +487,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -511,7 +511,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand All @@ -535,7 +535,7 @@ object LeaderboardTypes : BasicRegistry<LeaderboardType>() {
"""
SELECT
player_id,
SUM(experience_amount) value
COUNT(player_id) value
FROM
StatisticEvents
WHERE
Expand Down

0 comments on commit 9cf4c8d

Please sign in to comment.