Add default and remove new line

This commit is contained in:
Laeticia PIERRE 2024-05-09 11:08:16 +02:00
parent 609893d44e
commit b9d1500375

View File

@ -13,5 +13,7 @@ export function getPokemonPrefix(pokemon: Pokemon): string {
return pokemon.hasTrainer() ? 'Foe ' : 'Wild ';
case BattleSpec.FINAL_BOSS:
return 'Foe ';
default:
return '';
}
}