fix(百家乐): 精简 AI小班长发言的下注标签,解决括号嵌套问题

This commit is contained in:
2026-03-28 21:44:50 +08:00
parent 7bb7f1f4fd
commit 08c854222e

View File

@@ -198,7 +198,7 @@ class AiBaccaratBetJob implements ShouldQueue
): void { ): void {
$chatState = app(ChatStateService::class); $chatState = app(ChatStateService::class);
$labelMap = ['big' => '大【骰子点数 11~17】', 'small' => '小【骰子点数 4~10】', 'triple' => '豹子【三骰同点】']; $labelMap = ['big' => '大', 'small' => '小', 'triple' => '豹子'];
$betLabel = $labelMap[$betType] ?? $betType; $betLabel = $labelMap[$betType] ?? $betType;
$sourceTag = $decisionSource === 'ai' ? '🤖 AI分析' : '📊路单统计'; $sourceTag = $decisionSource === 'ai' ? '🤖 AI分析' : '📊路单统计';