Skip to content

Commit

Permalink
fix: ${namespace}. -> ${namespace}:
Browse files Browse the repository at this point in the history
  • Loading branch information
flx-sta committed Oct 1, 2024
1 parent dae23c3 commit dbc7062
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const MysteriousChestEncounter: MysteryEncounter =
koPlayerPokemon(scene, highestLevelPokemon);

encounter.setDialogueToken("pokeName", highestLevelPokemon.getNameToRender());
await showEncounterText(scene, `${namespace}.option.1.bad`);
await showEncounterText(scene, `${namespace}:option.1.bad`);

// Handle game over edge case
const allowedPokemon = scene.getParty().filter(p => p.isAllowedInBattle());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ function onGameOver(scene: BattleScene) {
encounter.dialogue.outro = [
{
speaker: trainerNameKey,
text: `${namespace}.outro_failed`,
text: `${namespace}:outro_failed`,
},
];

Expand Down

0 comments on commit dbc7062

Please sign in to comment.