Fix name casing for starter unlocks
parent
38f4da7445
commit
7cca86e082
|
@ -317,7 +317,7 @@ export class GameData {
|
||||||
|
|
||||||
if (newCatch && !hasPrevolution) {
|
if (newCatch && !hasPrevolution) {
|
||||||
this.scene.playSoundWithoutBgm('level_up_fanfare', 1500);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue