mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-07 18:05:30 -05:00
Remove gen2->7 auto filtering
closes #1768 (<7)->7 is now possible so no need to filter further
This commit is contained in:
@@ -426,8 +426,6 @@ private IEnumerable<PKM> SearchDatabase()
|
||||
res = res.Where(pk => pk.Format <= 2);
|
||||
if (format >= 3 && format <= 6) // 3-6
|
||||
res = res.Where(pk => pk.Format >= 3);
|
||||
if (format >= 7) // 1,3-6,7
|
||||
res = res.Where(pk => pk.Format != 2);
|
||||
}
|
||||
|
||||
switch (CB_Generation.SelectedIndex)
|
||||
|
||||
Reference in New Issue
Block a user