fix playban restart grace delay

pull/8537/head
Thibault Duplessis 2021-04-01 09:41:17 +02:00
parent a499eaeae6
commit 7b757d3c79
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ final class PlaybanApi(
}
private def IfBlameable[A: ornicar.scalalib.Zero](game: Game)(f: => Fu[A]): Fu[A] =
Uptime.startedSinceMinutes(0) ?? {
Uptime.startedSinceMinutes(10) ?? {
blameable(game) flatMap { _ ?? f }
}