From 3e8b56f34860cdb42c663a339f9c247db6b7bea9 Mon Sep 17 00:00:00 2001 From: zc-meng Date: Wed, 20 Nov 2024 19:52:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=94=90=E4=B9=90=E6=9E=97=E6=88=98=E7=BB=A9?= =?UTF-8?q?=E6=92=AD=E6=8A=A5?= 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 7324b313..18e21886 100644 --- a/src/main/kotlin/Game.kt +++ b/src/main/kotlin/Game.kt @@ -248,7 +248,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[0].playerName == "半藏") + humanPlayers[0].playerName == "半藏" || + humanPlayers[0].playerName == "唐乐林") } players.forEach { it!!.notifyWin(declaredWinners, winners, addScoreMap, newScoreMap) } }