mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-13 12:20:36 -05:00
Check for DexNav amped species
Level mismatch on regular wild check was lacking a comparison for dexnav.
This commit is contained in:
parent
e996135dd3
commit
ef8a0ca708
|
|
@ -158,7 +158,7 @@ private LegalityCheck verifyEncounter()
|
|||
|
||||
// Not Implemented: In-Game Trades
|
||||
|
||||
if (Legal.getWildEncounterValid(pk6))
|
||||
if (Legal.getDexNavValid(pk6) || Legal.getWildEncounterValid(pk6))
|
||||
{
|
||||
var lc = pk6.AbilityNumber != 4
|
||||
? new LegalityCheck(Severity.Valid, "Valid encounter at location.")
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user