Don't print 0pp scores on std on user/scores/best

This commit is contained in:
Howl 2016-05-26 21:13:36 +02:00
parent 2638f8be2a
commit fde01c6f84
1 changed files with 5 additions and 0 deletions

View File

@ -63,6 +63,11 @@ func UserScoresBestGET(md common.MethodData) common.CodeMessager {
if cm != nil {
return *cm
}
mc := genModeClause(md)
// Do not print 0pp scores on std
if getMode(md.C.Query("mode")) == "std" {
mc += " AND scores.pp > 0"
}
return scoresPuts(md, fmt.Sprintf(
`WHERE
scores.completed = '3'