From 7cca86e082aa153582ffa78287a6464bd05d7c39 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Wed, 5 Jul 2023 22:56:12 -0400 Subject: [PATCH] Fix name casing for starter unlocks --- src/system/game-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/game-data.ts b/src/system/game-data.ts index 82c5c3473..35f9dcc09 100644 --- a/src/system/game-data.ts +++ b/src/system/game-data.ts @@ -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; } }