add back watchtower as a legal location (#2796)

made an oopsie, Watchtower Ruins also apparently includes 2 extra dens that can spawn encounters that are not 8NC. Den 17 is locked to 8NC encounters only, but location-wise there is no difference between Den 15,16,17
This commit is contained in:
Archit Date 2020-03-20 22:22:44 +08:00 committed by GitHub
parent c8343e9f5d
commit e3e46209e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ namespace PKHeX.Core
protected override IEnumerable<EncounterSlot> GetFilteredSlots(PKM pkm, IEnumerable<EncounterSlot> 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<int, IReadOnlyList<byte>> ConnectingArea8 = new Dictionary<int, IReadOnlyList<byte>>
@ -227,4 +227,4 @@ namespace PKHeX.Core
Weather = weather;
}
}
}
}