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:
Kurt 2023-12-05 18:51:32 -08:00
parent c09890366b
commit 762a2a0c41

View file

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