diff --git a/src/messages.ts b/src/messages.ts index e5696c32499..aeffd361002 100644 --- a/src/messages.ts +++ b/src/messages.ts @@ -8,7 +8,7 @@ export function getPokemonMessage(pokemon: Pokemon, content: string): string { prefix = !pokemon.isPlayer() ? pokemon.hasTrainer() ? 'Foe ' : 'Wild ' : ''; break; case BattleSpec.FINAL_BOSS: - prefix = 'Foe '; + prefix = !pokemon.isPlayer() ? 'Foe ' : ''; break; } return `${prefix}${pokemon.name}${content}`;