diff --git a/PKHeX.Core/Legality/Areas/EncounterArea8.cs b/PKHeX.Core/Legality/Areas/EncounterArea8.cs index f50204225..abb95311a 100644 --- a/PKHeX.Core/Legality/Areas/EncounterArea8.cs +++ b/PKHeX.Core/Legality/Areas/EncounterArea8.cs @@ -58,7 +58,7 @@ private static bool IsMatch(DexLevel evo, EncounterSlot slot) protected override IEnumerable GetFilteredSlots(PKM pkm, IEnumerable slots, int minLevel) => slots; - public static bool IsWildArea8(int loc) => 122 <= loc && loc <= 154 && loc != Encounters8Nest.Watchtower; // Rolling Fields -> Lake of Outrage + public static bool IsWildArea8(int loc) => 122 <= loc && loc <= 154; // Rolling Fields -> Lake of Outrage // Location, and areas that can feed encounters into it. public static readonly IReadOnlyDictionary> ConnectingArea8 = new Dictionary> @@ -227,4 +227,4 @@ public EncounterSlot8(int specForm, int min, int max, AreaWeather8 weather) Weather = weather; } } -} \ No newline at end of file +}