mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
Fix no alpha move bypass for alphas
https://projectpokemon.org/home/forums/topic/57375-pkhex-new-update-legality-errors-contribution-page/?do=findComment&comment=273294
This commit is contained in:
parent
c59b0947f0
commit
80eac48a49
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public sealed record EncounterSlot8a : EncounterSlot, IAlpha
|
|||
bool hasAlphaMove = alphaMove != 0;
|
||||
if (!pa.IsAlpha)
|
||||
return !hasAlphaMove ? EncounterMatchRating.Match : EncounterMatchRating.DeferredErrors;
|
||||
if (Type is SlotType.Landmark == hasAlphaMove)
|
||||
if (Type is SlotType.Landmark && hasAlphaMove)
|
||||
return EncounterMatchRating.DeferredErrors;
|
||||
|
||||
var pi = PersonalTable.LA.GetFormEntry(Species, Form);
|
||||
|
|
Loading…
Reference in a new issue