mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-02-21 19:54:14 +01:00
Merge pull request #2302 from LOuroboros/patch-1
Small syntax fix for CanLearnTeachableMove
This commit is contained in:
commit
54ad9ec1d3
@ -7297,9 +7297,8 @@ u8 CanLearnTeachableMove(u16 species, u16 move)
|
||||
u8 i;
|
||||
for (i = 0; gTeachableLearnsets[species][i] != MOVE_UNAVAILABLE; i++)
|
||||
{
|
||||
if (gTeachableLearnsets[species][i] == move) {
|
||||
if (gTeachableLearnsets[species][i] == move)
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user