Fix prefixing player Pokemon with 'Foe' during final battle

This commit is contained in:
Flashfyre 2024-03-30 01:37:54 -04:00
parent c3a163b348
commit b6943f4753
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export function getPokemonMessage(pokemon: Pokemon, content: string): string {
prefix = !pokemon.isPlayer() ? pokemon.hasTrainer() ? 'Foe ' : 'Wild ' : ''; prefix = !pokemon.isPlayer() ? pokemon.hasTrainer() ? 'Foe ' : 'Wild ' : '';
break; break;
case BattleSpec.FINAL_BOSS: case BattleSpec.FINAL_BOSS:
prefix = 'Foe '; prefix = !pokemon.isPlayer() ? 'Foe ' : '';
break; break;
} }
return `${prefix}${pokemon.name}${content}`; return `${prefix}${pokemon.name}${content}`;