Update EncounterSlot8GO.cs

This commit is contained in:
Kurt 2020-11-14 15:33:32 -08:00
parent 377ec02c9b
commit cb57e807ce

View file

@ -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
};
}
}