mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Update EncounterSlot8GO.cs
This commit is contained in:
parent
377ec02c9b
commit
cb57e807ce
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ namespace PKHeX.Core
|
|||
PogoType.Egg => b == Ball.Poke,
|
||||
PogoType.Raid15 => b == Ball.Premier,
|
||||
PogoType.Raid20 => b == Ball.Premier,
|
||||
_ => b != Ball.Premier,
|
||||
_ => (uint)(b - 2) <= 2, // Poke, Great, Ultra
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue