Remove gen2->7 auto filtering

closes #1768
(<7)->7 is now possible so no need to filter further
This commit is contained in:
Kurt
2018-01-24 09:19:20 -08:00
parent b16a2f9ad2
commit 0edefedc2b

View File

@@ -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)