mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
lgpe static encounters: Check specified IVs
https://discord.com/channels/401014193211441153/679178558597496872/1202059598941671434
This commit is contained in:
parent
aba7c800b3
commit
6e9ffe6390
1 changed files with 2 additions and 0 deletions
|
@ -96,6 +96,8 @@ public sealed record EncounterStatic7b(GameVersion Version)
|
|||
return false;
|
||||
if (FlawlessIVCount != 0 && pk.FlawlessIVCount < FlawlessIVCount)
|
||||
return false;
|
||||
if (IVs.IsSpecified && !Legal.GetIsFixedIVSequenceValidSkipRand(IVs, pk))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue