Added proper multiplication symbol

This commit is contained in:
Lugiad 2025-06-27 19:38:40 +02:00 committed by GitHub
parent 54a1b1d921
commit 79e7925421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -115,7 +115,7 @@ export default class BallUiHandler extends UiHandler {
updateCounts() { updateCounts() {
this.countsText.setText( this.countsText.setText(
Object.values(globalScene.pokeballCounts) Object.values(globalScene.pokeballCounts)
.map(c => `x${c}`) .map(c => `×${c}`)
.join("\n"), .join("\n"),
); );
} }