From cb57e807cee35c4e931c9cac352f8f10b7c7e17a Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 14 Nov 2020 15:33:32 -0800 Subject: [PATCH] Update EncounterSlot8GO.cs --- .../Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs index 68e7b251b..133b54384 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8GO.cs @@ -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 }; } }