Skip to content

Commit

Permalink
Fixed unintended form behavior (#4299)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsparagusEduardo authored Mar 24, 2024
1 parent 795b927 commit 8856597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pokemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -4554,7 +4554,7 @@ u16 NationalPokedexNumToSpecies(u16 nationalNum)
if (species == NUM_SPECIES)
return NATIONAL_DEX_NONE;

return species;
return GET_BASE_SPECIES_ID(species);
}

u16 NationalToHoennOrder(u16 nationalNum)
Expand Down

0 comments on commit 8856597

Please sign in to comment.