2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2025-02-19 06:48:33 +00:00

Flag insufficient flawless IVs for eslot8a

This commit is contained in:
Kurt 2022-02-06 16:08:03 -08:00
parent 3069d42ad4
commit b8394516d2

View file

@ -84,6 +84,9 @@ namespace PKHeX.Core
var pkm = data.pkm; var pkm = data.pkm;
if (pkm.GO) if (pkm.GO)
VerifyIVsGoTransfer(data); VerifyIVsGoTransfer(data);
if (data.EncounterMatch is EncounterSlot8a s)
VerifyIVsFlawless(data, s.FlawlessIVCount);
} }
private void VerifyIVsGen6(LegalityAnalysis data, EncounterSlot w) private void VerifyIVsGen6(LegalityAnalysis data, EncounterSlot w)