mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Fix comparison
This commit is contained in:
parent
1f600f3518
commit
e663ffdd35
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ namespace PKHeX.Core
|
|||
{
|
||||
X or Y => getMoves(LevelUpXY, PersonalTable.XY),
|
||||
OR or AS => getMoves(LevelUpAO, PersonalTable.AO),
|
||||
SN or MN when species > MaxSpeciesID_7 => getMoves(LevelUpSM, PersonalTable.SM),
|
||||
SN or MN when species <= MaxSpeciesID_7 => getMoves(LevelUpSM, PersonalTable.SM),
|
||||
US or UM => getMoves(LevelUpUSUM, PersonalTable.USUM),
|
||||
SW or SH => getMoves(LevelUpSWSH, PersonalTable.SWSH),
|
||||
_ => Array.Empty<int>(),
|
||||
|
|
Loading…
Reference in a new issue