mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -471,7 +471,7 @@ public sealed class Zukan4(SAV4 sav, int offset) : ZukanBase<SAV4>(sav, offset)
|
|||
}
|
||||
else
|
||||
{
|
||||
SetSeenGender(species, pi.FixedGender() & 1);
|
||||
SetSeenGenderNewFlag(species, pi.FixedGender() & 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue