Don't abort unlimited AI games after 6 hours

deepcrayonfish^2
Benedikt Werner 2021-11-24 09:03:25 +01:00
parent 9ef8924fa4
commit b063b94f9f
No known key found for this signature in database
GPG Key ID: 1DBFF0F8E9E121EB
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ case class Game(
def abandoned =
(status <= Status.Started) && {
movedAt isBefore {
if (hasAi && !hasCorrespondenceClock) Game.aiAbandonedDate
if (hasAi && hasClock) Game.aiAbandonedDate
else Game.abandonedDate
}
}