Merge pull request #23 from AsparagusEduardo/tx_dexFix
Fixed dex showing incorrect moves when using PE and BE
This commit is contained in:
commit
fe63251b51
1 changed files with 1 additions and 1 deletions
|
@ -5277,7 +5277,7 @@ bool8 SpeciesCanLearnLvlUpMove(u16 species, u16 move) //Move search PokedexPlus
|
|||
#if defined (BATTLE_ENGINE) || defined (POKEMON_EXPANSION)
|
||||
for (j = 0; j < MAX_LEVEL_UP_MOVES && gLevelUpLearnsets[species][j].move != LEVEL_UP_END; j++)
|
||||
{
|
||||
if (move == (gLevelUpLearnsets[species][j].move & LEVEL_UP_MOVE_ID))
|
||||
if (move == (gLevelUpLearnsets[species][j].move))
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue