mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
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:
parent
c8343e9f5d
commit
e3e46209e9
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue