Rely on deferral ability check instead of exact

Closes #4144
This commit is contained in:
Kurt 2023-12-31 13:13:51 -08:00
parent 1b176eec53
commit d56eb0e3c4

View file

@ -133,10 +133,6 @@ public abstract record EncounterStatic8Nest<T>(GameVersion Version)
if (pk is PK8 d && d.DynamaxLevel < DynamaxLevel)
return false;
// Required Ability
if (Ability == OnlyHidden && pk.AbilityNumber != 4)
return false; // H
if (Version != GameVersion.SWSH && pk.Version != (int)Version && pk.Met_Location != SharedNest)
return false;