diff --git a/app/Jobs/CloseBaccaratRoundJob.php b/app/Jobs/CloseBaccaratRoundJob.php index 9250731..bc03b98 100644 --- a/app/Jobs/CloseBaccaratRoundJob.php +++ b/app/Jobs/CloseBaccaratRoundJob.php @@ -284,7 +284,7 @@ class CloseBaccaratRoundJob implements ShouldQueue */ private function pushResultMessage(BaccaratRound $round, ChatStateService $chatState, array $winners = [], array $losers = []): void { - $diceStr = "《{$round->dice1}》《{$round->dice2}》《{$round->dice3}》"; + $diceStr = "[{$round->dice1}][{$round->dice2}][{$round->dice3}]"; $resultText = match ($round->result) { 'big' => "🔵 大({$round->total_points} 点)",