mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-23 15:05:13 -05:00
Fix comment
wasn't sync'd :(
This commit is contained in:
@@ -57,7 +57,7 @@ public static IEnumerable<PKM> FilterByLevel(IEnumerable<PKM> res, SearchCompari
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user