mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 13:58:33 +00:00
Fix colo lock check regression
oops; tests pass now
This commit is contained in:
parent
7ab42e7cc2
commit
4dad475fcd
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ namespace PKHeX.Core
|
|||
bool valid = false;
|
||||
if (s.IVs == null) // not ereader
|
||||
{
|
||||
valid = !LockFinder.IsAllShadowLockValid(s, info.PIDIV, pkm);
|
||||
valid = LockFinder.IsAllShadowLockValid(s, info.PIDIV, pkm);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue