[Beta][P3 Bug] fix: reading stats.battleCount (#4335)
instead of stats.battlesWon
This commit is contained in:
parent
4bdaf93c72
commit
baf686f621
|
@ -76,7 +76,7 @@ export default class TitleUiHandler extends OptionSelectUiHandler {
|
|||
.then(stats => {
|
||||
this.playerCountLabel.setText(`${stats.playerCount} ${i18next.t("menu:playersOnline")}`);
|
||||
if (this.splashMessage === "splashMessages:battlesWon") {
|
||||
this.splashMessageText.setText(i18next.t(this.splashMessage, { count: stats.battlesWon }));
|
||||
this.splashMessageText.setText(i18next.t(this.splashMessage, { count: stats.battleCount }));
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
|
|
Loading…
Reference in New Issue