Fix wrong BGM name for Kyurem
This commit is contained in:
parent
636f89992a
commit
c275620755
|
@ -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';
|
||||||
|
|
Loading…
Reference in New Issue