diff --git a/src/main/kotlin/Game.kt b/src/main/kotlin/Game.kt index f1baa914..a2dc9172 100644 --- a/src/main/kotlin/Game.kt +++ b/src/main/kotlin/Game.kt @@ -242,7 +242,8 @@ class Game(val id: Int, totalPlayerCount: Int, val actorRef: ActorRef) { } Statistics.addPlayerGameCount(playerGameResultList) Statistics.calculateRankList() - QQPusher.push(this, declaredWinners, winners, addScoreMap, newScoreMap, humanPlayers.size > 1 || humanPlayers.playerName == "半藏") + QQPusher.push(this, declaredWinners, winners, addScoreMap, newScoreMap, humanPlayers.size > 1 || + humanPlayers[0].playerName == "半藏") } players.forEach { it!!.notifyWin(declaredWinners, winners, addScoreMap, newScoreMap) } }