Fix Flawless IV count comparison

lol ty atrius
Closes #3383
This commit is contained in:
Kurt 2022-02-04 19:31:45 -08:00
parent 97eb2d47d5
commit 94f2d3ba0b

View file

@ -60,7 +60,7 @@ public sealed record EncounterSlot8a : EncounterSlot, IAlpha
return EncounterMatchRating.DeferredErrors;
if (Gender is not Gender.Random && pkm.Gender != (int)Gender)
return EncounterMatchRating.DeferredErrors;
if (FlawlessIVCount is not 0 && pkm.FlawlessIVCount != FlawlessIVCount)
if (FlawlessIVCount is not 0 && pkm.FlawlessIVCount < FlawlessIVCount)
return EncounterMatchRating.DeferredErrors;
var result = GetAlphaMoveCompatibility(pkm);