Fix Mewtwo theme play issues

Mewtwo's theme wasn't playing properly because I am silly and forgot to add a `jr .playSong` so it doesn't fall through. Also, it needed to be before the wild check. Now it works as expected.

This also has the latest version of the Mewtwo theme by LuciShrimp, which is reaching a pretty amazing state.
This commit is contained in:
Llinos Evans 2023-06-25 20:09:52 +01:00
parent 30a33c6d8e
commit 41e7439496
2 changed files with 835 additions and 585 deletions

View file

@ -14,10 +14,10 @@ PlayBattleMusic::
jr .playSong
.notGymLeaderBattle
ld a, [wCurOpponent]
cp MEWTWO ; Needs to be before OPP_ID_OFFSET to skip the wild check.
jr z, .mewtwoBattle
cp OPP_ID_OFFSET
jr c, .wildBattle
cp MEWTWO
jr z, .mewtwoBattle
cp OPP_YUJIROU
jr z, .Elite4Battle
cp OPP_LORELEI ; elite four now play the gym leader battle theme
@ -48,6 +48,7 @@ PlayBattleMusic::
jr .playSong
.mewtwoBattle
ld a, MUSIC_MEWTWO01
jr .playSong
.wildBattle
ld a, MUSIC_WILD_BATTLE
.playSong

File diff suppressed because it is too large Load diff