mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-08 13:55:44 -05:00
Update SearchSettings.cs
This commit is contained in:
@@ -96,7 +96,7 @@ private IEnumerable<PKM> SearchInner(IEnumerable<PKM> list)
|
||||
{
|
||||
foreach (var pk in list)
|
||||
{
|
||||
if (IsSearchMatch(pk))
|
||||
if (!IsSearchMatch(pk))
|
||||
continue;
|
||||
yield return pk;
|
||||
}
|
||||
@@ -107,7 +107,7 @@ private IEnumerable<SlotCache> SearchInner(IEnumerable<SlotCache> list)
|
||||
foreach (var entry in list)
|
||||
{
|
||||
var pk = entry.Entity;
|
||||
if (IsSearchMatch(pk))
|
||||
if (!IsSearchMatch(pk))
|
||||
continue;
|
||||
yield return entry;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user