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; }