Fix wrong BGM name for Kyurem

This commit is contained in:
Flashfyre 2024-02-29 15:09:32 -05:00
parent 636f89992a
commit c275620755
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ export default class Battle {
} }
if (pokemon.species.legendary || pokemon.species.pseudoLegendary || pokemon.species.mythical) { if (pokemon.species.legendary || pokemon.species.pseudoLegendary || pokemon.species.mythical) {
if (pokemon.species.speciesId === Species.KYUREM) if (pokemon.species.speciesId === Species.KYUREM)
return 'battle_legendary_z'; return 'battle_legendary_k';
if (pokemon.species.legendary) if (pokemon.species.legendary)
return 'battle_legendary_rz'; return 'battle_legendary_rz';
return 'battle_legendary'; return 'battle_legendary';