fix Random.nextInt(1) always returns 0

pull/7148/head
Thibault Duplessis 2020-08-18 22:18:42 +02:00
parent e7b33e8f9f
commit e787ea548d
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ object RageSit {
Inc {
game.speed match {
case s if s < Speed.Bullet => 0
case Speed.Bullet => scala.util.Random.nextInt(1)
case Speed.Bullet => scala.util.Random.nextInt(2)
case Speed.Blitz => 1
case _ => 2
}