From e4cc678527cfd84e5cf776ca271d81379a1737c4 Mon Sep 17 00:00:00 2001 From: zc-meng Date: Fri, 13 Sep 2024 20:36:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=8A=E8=97=8F=E7=9A=84=E7=89=B9=E6=AE=8A?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/Game.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) } }