mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-25 16:35:02 -05:00
Fix gen4 complete dex operation for female-only
Closes #4047 SetSeen(species) will set the seen flag but leave both bits 0-0; old code would SetSeen and fail to revise it to 1-1. Since we're setting both to their "complete" state, a "complete" state for a single gender is just a "new" registration operation.
This commit is contained in:
parent
c09890366b
commit
762a2a0c41
|
|
@ -471,7 +471,7 @@ private void CompleteSeen(ushort species)
|
|||
}
|
||||
else
|
||||
{
|
||||
SetSeenGender(species, pi.FixedGender() & 1);
|
||||
SetSeenGenderNewFlag(species, pi.FixedGender() & 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user