diff --git a/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs b/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs index c844422b0..f957cd652 100644 --- a/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs +++ b/PKHeX.Core/Legality/Encounters/Data/Encounters2.cs @@ -34,7 +34,7 @@ private static EncounterArea[] GetTables2(GameVersion Version) var f = EncounterArea.GetArray2_F(Util.GetBinaryResource("encounter_gsc_f.pkl")); EncounterArea[] Slots = new EncounterArea[0]; - if (GameVersion.GS.Contains(Version)) + if (Version.Contains(GameVersion.GS)) Slots = GetSlots_GS(f); if (Version.Contains(GameVersion.C)) Slots = AddExtraTableSlots(Slots, GetSlots_C(f));