From a225609cea63fead592f829b94588cb141787357 Mon Sep 17 00:00:00 2001 From: lkddi Date: Thu, 12 Mar 2026 16:47:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=94=E5=AD=90=E6=A3=8B=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=EF=BC=9A=E7=BB=9F=E4=B8=80=E4=B8=BA=E3=80=90=E4=BA=94=E5=AD=90?= =?UTF-8?q?=E6=A3=8B=E3=80=91=E6=A0=87=E9=A2=98=E6=A0=BC=E5=BC=8F=EF=BC=8C?= =?UTF-8?q?=E4=B8=8E=E8=B5=9B=E9=A9=AC=E9=80=9A=E7=9F=A5=E9=A3=8E=E6=A0=BC?= =?UTF-8?q?=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/GomokuController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/GomokuController.php b/app/Http/Controllers/GomokuController.php index 98cc807..63516ff 100644 --- a/app/Http/Controllers/GomokuController.php +++ b/app/Http/Controllers/GomokuController.php @@ -464,13 +464,13 @@ class GomokuController extends Controller 'resign' => '(认输)', default => '', }; - $text = "🎉 棋神降临!恭喜玩家【{$winnerName}】在五子棋玩家对战中击败了【{$loserName}】{$reasonText},赢得了 {$rewardGold} 金币奖励!"; + $text = "🌟 ♟️ 【五子棋】玩家对战结果!恭喜玩家【{$winnerName}】击败了【{$loserName}】{$reasonText},赢得 {$rewardGold} 金币!"; } elseif ($winnerColor === 1) { // PvE:玩家获胜 - $text = "🎉 棋神降临!恭喜玩家【{$winnerName}】在五子棋人机对战(难度{$game->ai_level})中击败了【{$loserName}】,赢得了 {$rewardGold} 金币奖励!"; + $text = "🌟 ♟️ 【五子棋】棋神降临!恭喜玩家【{$winnerName}】在人机对战(难度{$game->ai_level})中击败 AI,赢得 {$rewardGold} 金币!"; } else { // PvE:AI 获胜(玩家输了) - $text = "🤖 AI 大获全胜!玩家【{$loserName}】在五子棋人机对战(难度{$game->ai_level})中不敌 AI,再接再厉!"; + $text = "🌟 ♟️ 【五子棋】AI 大获全胜!玩家【{$loserName}】在人机对战(难度{$game->ai_level})中不敌 AI,再接再厉!"; } $this->broadcastSystemMessage($game->room_id, $text); }