Fix name casing for starter unlocks

pull/2/head
Flashfyre 2023-07-05 22:56:12 -04:00
parent 38f4da7445
commit 7cca86e082
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ export class GameData {
if (newCatch && !hasPrevolution) {
this.scene.playSoundWithoutBgm('level_up_fanfare', 1500);
this.scene.ui.showText(`${species.name} has been\nadded as a starter!`, null, () => resolve(), null, true);
this.scene.ui.showText(`${species.name.toUpperCase()} has been\nadded as a starter!`, null, () => resolve(), null, true);
return;
}
}