Skip to content

Commit

Permalink
refine explorer indexer probability filter
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Feb 12, 2016
1 parent d2800c8 commit 31bf631
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/explorer/src/main/ExplorerIndexer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ private final class ExplorerIndexer(endpoint: String) {
case Blitz if rating > 1800 => 2 / 3f
case Blitz => 1 / 6f
case Bullet if rating > 2200 => 1
case Bullet if rating > 2000 => 1 / 3f
case Bullet if rating > 1800 => 1 / 10f
case Bullet => 1 / 20f
case Bullet if rating > 2000 => 1 / 4f
case Bullet if rating > 1800 => 1 / 25f
case Bullet => 1 / 40f
case _ => 1 // keep all variant games
}
}
Expand Down

0 comments on commit 31bf631

Please sign in to comment.