?
This commit is contained in:
parent
ea60434e8d
commit
19f4d987ac
|
@ -85,19 +85,6 @@ def getUserStatsRx(userID, gameMode):
|
||||||
:return: dictionary with result
|
:return: dictionary with result
|
||||||
"""
|
"""
|
||||||
modeForDB = gameModes.getGameModeForDB(gameMode)
|
modeForDB = gameModes.getGameModeForDB(gameMode)
|
||||||
if gameMode == 3:
|
|
||||||
|
|
||||||
# Get stats
|
|
||||||
stats = glob.db.fetch("""SELECT
|
|
||||||
ranked_score_{gm} AS rankedScore,
|
|
||||||
avg_accuracy_{gm} AS accuracy,
|
|
||||||
playcount_{gm} AS playcount,
|
|
||||||
total_score_{gm} AS totalScore,
|
|
||||||
pp_{gm} AS pp
|
|
||||||
FROM users_stats WHERE id = %s LIMIT 1""".format(gm=modeForDB), [userID])
|
|
||||||
|
|
||||||
# Get game rank
|
|
||||||
else:
|
|
||||||
# Get stats
|
# Get stats
|
||||||
stats = glob.db.fetch("""SELECT
|
stats = glob.db.fetch("""SELECT
|
||||||
ranked_score_{gm}_rx AS rankedScore,
|
ranked_score_{gm}_rx AS rankedScore,
|
||||||
|
@ -122,21 +109,8 @@ def getUserStatsAp(userID, gameMode):
|
||||||
:return: dictionary with result
|
:return: dictionary with result
|
||||||
"""
|
"""
|
||||||
modeForDB = gameModes.getGameModeForDB(gameMode)
|
modeForDB = gameModes.getGameModeForDB(gameMode)
|
||||||
if gameMode == 3:
|
|
||||||
|
|
||||||
# Get stats
|
|
||||||
stats = glob.db.fetch("""SELECT
|
|
||||||
ranked_score_{gm} AS rankedScore,
|
|
||||||
avg_accuracy_{gm} AS accuracy,
|
|
||||||
playcount_{gm} AS playcount,
|
|
||||||
total_score_{gm} AS totalScore,
|
|
||||||
pp_{gm} AS pp
|
|
||||||
FROM users_stats WHERE id = %s LIMIT 1""".format(gm=modeForDB), [userID])
|
|
||||||
|
|
||||||
# Get game rank
|
|
||||||
else:
|
|
||||||
# Get stats
|
# Get stats
|
||||||
stats = glob.db.fetch("""SELECT
|
stats = glob.db.fetch("""SELECT
|
||||||
ranked_score_{gm}_ap AS rankedScore,
|
ranked_score_{gm}_ap AS rankedScore,
|
||||||
avg_accuracy_{gm}_ap AS accuracy,
|
avg_accuracy_{gm}_ap AS accuracy,
|
||||||
playcount_{gm}_ap AS playcount,
|
playcount_{gm}_ap AS playcount,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user