Compare commits
No commits in common. "4c32b9f6bd55ef313e2bc5fad881bb0028fc6c78" and "3ab56dca392c83d57a9d5abcea217ecde7c1521e" have entirely different histories.
4c32b9f6bd
...
3ab56dca39
File diff suppressed because it is too large
Load Diff
@ -105,7 +105,7 @@ export class SlotGame extends Component {
|
||||
this.grayNode = this.node.getChildByName('grayNode');
|
||||
this.winLayer = this.node.getChildByName('winLayer');
|
||||
this.readyHand = this.node.getChildByName('readyHand');
|
||||
this.scatterLayer = this.node.getChildByPath('scatterLayer')
|
||||
this.scatterLayer = this.node.getChildByPath('scatterLayer/layer')
|
||||
|
||||
this.winType = this.node.getChildByName('winType');
|
||||
|
||||
|
||||
@ -236,7 +236,7 @@ export class HistoryDetail extends Component {
|
||||
|
||||
info.getChildByName("Label_Bet").getComponent(Label).string = getTranslate(this.dict, "Bet") + `(${currencySymbol})`;
|
||||
|
||||
info.getChildByName("txt_profit").getComponent(Label).string = fixNum(pan.Profit);
|
||||
info.getChildByName("txt_profit").getComponent(Label).string = fixNum(pan.WinInfo ? pan.WinInfo.Score : 0);
|
||||
info.getChildByName("Label_Profit").getComponent(Label).string = getTranslate(this.dict, "Profit") + `(${currencySymbol})`;
|
||||
|
||||
info.getChildByName("txt_balance_before").getComponent(Label).string = fixNum(pan.Balance - pan.AllScore + pan.Bet) + "➡️";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user