This commit is contained in:
Alicia 2019-02-03 13:23:56 +00:00
parent e1ed11d49f
commit 9c44c15e8a
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ func genModeClauseRx(md common.MethodData) string {
if md.Query("mode") != "" {
m, err := strconv.Atoi(md.Query("mode"))
if err == nil && m >= 0 && m <= 3 {
modeClause = fmt.Sprintf("AND scores_relac.play_mode = '%d'", m)
modeClause = fmt.Sprintf("AND scores_relax.play_mode = '%d'", m)
}
}
return modeClause