mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Fix comment
wasn't sync'd :(
This commit is contained in:
parent
24d6c0d713
commit
f77a8ecfbd
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace PKHeX.Core.Searching
|
|||
public static IEnumerable<PKM> FilterByEVs(IEnumerable<PKM> res, int option) => option switch
|
||||
{
|
||||
1 => res.Where(pk => pk.EVTotal == 0), // None (0)
|
||||
2 => res.Where(pk => pk.EVTotal is (not 0) and < 128), // Some (127-0)
|
||||
2 => res.Where(pk => pk.EVTotal is (not 0) and < 128), // Some (127-1)
|
||||
3 => res.Where(pk => pk.EVTotal is >= 128 and < 508), // Half (128-507)
|
||||
4 => res.Where(pk => pk.EVTotal >= 508), // Full (508+)
|
||||
_ => res
|
||||
|
|
Loading…
Add table
Reference in a new issue