From 02ed8ea3190df2d4ed9a5405cda2d057ca2de891 Mon Sep 17 00:00:00 2001 From: pllx Date: Wed, 29 Apr 2026 15:48:33 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B2=BE=E7=AE=80AI=E7=99=BE=E5=AE=B6=E4=B9=90?= =?UTF-8?q?=E4=B8=8B=E6=B3=A8=E9=80=9A=E7=9F=A5=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Jobs/AiBaccaratBetJob.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/Jobs/AiBaccaratBetJob.php b/app/Jobs/AiBaccaratBetJob.php index fc96fca..1a9c3bd 100644 --- a/app/Jobs/AiBaccaratBetJob.php +++ b/app/Jobs/AiBaccaratBetJob.php @@ -331,9 +331,8 @@ class AiBaccaratBetJob implements ShouldQueue $chatState = app(ChatStateService::class); $labelMap = ['big' => '大', 'small' => '小', 'triple' => '豹子']; $label = $labelMap[$betType] ?? $betType; - - $sourceText = $decisionSource === 'ai' ? '🤖 经过深度算法预测,本局我看好:' : '📊 观察了下最近的路单,这把我觉得是:'; - $content = "🌟 🎲 【百家乐】 {$user->username} 已下注:{$label} (".number_format($amount)." 金币)
{$sourceText} {$label}!"; + // AI 下注播报统一压成单行,避免游戏通知卡片出现多行正文挤占高度。 + $content = "🌟 🎲 【百家乐】 {$user->username} 已下注:{$label} (".number_format($amount).' 金币)'; $msg = [ 'id' => $chatState->nextMessageId($roomId),