Update EncounterArea8.cs

This commit is contained in:
Kurt 2020-03-19 21:06:46 -07:00
parent 61cbf04c2e
commit 72e0fbe225

View File

@ -58,7 +58,7 @@ private static bool IsMatch(DexLevel evo, EncounterSlot slot)
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> slots, int minLevel) => slots;
public static bool IsWildArea8(int loc) => 122 <= loc && loc <= 154; // Rolling Fields -> Lake of Outrage
public static bool IsWildArea8(int loc) => 122 <= loc && loc <= 154 && loc != Watchtower; // Rolling Fields -> Lake of Outrage
// Location, and areas that can feed encounters into it.
public static readonly IReadOnlyDictionary<int, IReadOnlyList<byte>> ConnectingArea8 = new Dictionary<int, IReadOnlyList<byte>>