diff options
Diffstat (limited to 'engine/party_menu.asm')
-rw-r--r-- | engine/party_menu.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/party_menu.asm b/engine/party_menu.asm index e89fdab19..0415e29e4 100644 --- a/engine/party_menu.asm +++ b/engine/party_menu.asm @@ -587,10 +587,10 @@ PlacePartyMonMobileBattleSelection: ; 50307 PartyMenuCheckEgg: ; 50389 - ld a, PartySpecies % $100 + ld a, LOW(PartySpecies) add b ld e, a - ld a, PartySpecies / $100 + ld a, HIGH(PartySpecies) adc 0 ld d, a ld a, [de] |