make stockfish play first move earlier

pull/5692/head
Thibault Duplessis 2019-11-26 21:02:46 -06:00
parent 95c5480cb8
commit d175c37452
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ final class Player(
private val defaultClock = Clock(300, 0)
private def delayFor(g: Game): Option[FiniteDuration] =
if (!g.bothPlayersHaveMoved) 4.seconds.some
if (!g.bothPlayersHaveMoved) 2.seconds.some
else for {
pov <- g.aiPov
clock = g.clock | defaultClock