From 1afc5ac178124b7d75e02b6bf90c41d0a599d163 Mon Sep 17 00:00:00 2001 From: TJH Date: Mon, 11 May 2026 15:28:34 +0800 Subject: [PATCH] bug --- assets/Game/Scripts/SlotScene.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/Game/Scripts/SlotScene.ts b/assets/Game/Scripts/SlotScene.ts index 8ab5632..d9f67e2 100644 --- a/assets/Game/Scripts/SlotScene.ts +++ b/assets/Game/Scripts/SlotScene.ts @@ -190,7 +190,9 @@ export class SlotScene extends Component { if (isNewSpin) { this.slotMsg.setTotaleMulti(0) } - if (!this.isFreeSpin) { this.slotBar.setWin(0); } + if (!this.isFreeSpin) { + this.slotBar.setWin(0); + } let msg = !this.isFeatureBuySpin && buyType == 0 ? { Bet: this.slotBar.getBet(), IsDouble: this.isDoubleWin, } @@ -653,7 +655,7 @@ export class SlotScene extends Component { if (this.spinData.RoundInfo.Mul == 1) { this.slotMsg.showTotalWinMsg(this.spinData.RoundInfo.Score); - this.slotBar.updateWinMsg(this.spinData.RoundInfo.Score, false); + this.slotBar.updateWinMsg(this.spinData.AllScore, false); callBack(); return; }