mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Update EncounterStatic4Pokewalker.cs
This commit is contained in:
parent
583f96a598
commit
baf2ac22d7
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ public sealed record EncounterStatic4Pokewalker : EncounterStatic
|
|||
|
||||
protected override bool IsMatchPartial(PKM pk)
|
||||
{
|
||||
if (Gift && pk.Ball != Ball)
|
||||
if (pk.Ball != 4)
|
||||
return true;
|
||||
if (!IsCourseAvailable(pk.Language))
|
||||
return true;
|
||||
|
@ -121,5 +121,5 @@ public enum PokewalkerCourse4 : byte
|
|||
Sightseeing = 24, // JPN/KOR Exclusive
|
||||
WinnersPath = 25,
|
||||
AmityMeadow = 26, // JPN Exclusive
|
||||
MAX_COUNT,
|
||||
MAX_COUNT = 27,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue