mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
parent
bc61980663
commit
523dfa32aa
1 changed files with 2 additions and 2 deletions
|
@ -529,11 +529,11 @@ namespace PKHeX.WinForms
|
|||
switch (option)
|
||||
{
|
||||
case 0: break; // Any (Do nothing)
|
||||
case 1: // <=
|
||||
case 3: // <=
|
||||
return res.Where(pk => pk.Stat_Level <= level);
|
||||
case 2: // ==
|
||||
return res.Where(pk => pk.Stat_Level == level);
|
||||
case 3: // >=
|
||||
case 1: // >=
|
||||
return res.Where(pk => pk.Stat_Level >= level);
|
||||
}
|
||||
return res;
|
||||
|
|
Loading…
Reference in a new issue