diff --git a/src/main/kotlin/Game.kt b/src/main/kotlin/Game.kt index f2f7007b..6246662a 100644 --- a/src/main/kotlin/Game.kt +++ b/src/main/kotlin/Game.kt @@ -54,7 +54,11 @@ class Game(val id: Int, totalPlayerCount: Int, val actorRef: ActorRef) { get() { val cnt = players.count { it is HumanPlayer } return when (cnt) { - 1 -> Config.WaitSeconds * 2 + 1 -> { + val humanPlayers = players.filterIsInstance() + if (humanPlayers[0].playerName == "ε”δΉζž—") Config.WaitSeconds * 200 + else Config.WaitSeconds * 2 + } 2 -> Config.WaitSeconds else -> (Config.WaitSeconds * (1 - 0.05 * cnt)).toInt() }