diff options
Diffstat (limited to 'engine/pikachu/pikachu_status.asm')
-rwxr-xr-x | engine/pikachu/pikachu_status.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/pikachu/pikachu_status.asm b/engine/pikachu/pikachu_status.asm index c73d3b3f..5fc92ead 100755 --- a/engine/pikachu/pikachu_status.asm +++ b/engine/pikachu/pikachu_status.asm @@ -9,7 +9,7 @@ IsStarterPikachuInOurParty:: push hl inc a jr z, .noPlayerPikachu - cp PIKACHU + 1 + cp STARTER_PIKACHU + 1 jr nz, .curMonNotPlayerPikachu ld h, d ld l, e @@ -79,7 +79,7 @@ asm_fce21: ld a, [wWhichPokemon] call AddNTimes ld a, [hl] - cp PIKACHU + cp STARTER_PIKACHU jr nz, .notPlayerPikachu ld bc, wPartyMon1OTID - wPartyMon1 add hl, bc @@ -189,7 +189,7 @@ IsSurfingPikachuInThePlayersParty:: push hl inc a jr z, .noSurfingPlayerPikachu - cp PIKACHU+1 + cp STARTER_PIKACHU + 1 jr nz, .curMonNotSurfingPlayerPikachu ld h, d ld l, e |