mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
parent
97eb2d47d5
commit
94f2d3ba0b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue