mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Update EncounterArea8.cs
This commit is contained in:
parent
816f35d042
commit
42453bdcd8
1 changed files with 3 additions and 3 deletions
|
@ -29,9 +29,9 @@ namespace PKHeX.Core
|
|||
|
||||
public override IEnumerable<EncounterSlot> GetMatchingSlots(PKM pkm, IReadOnlyList<EvoCriteria> chain)
|
||||
{
|
||||
var loc = Location;
|
||||
bool canBoostTo60 = IsWildArea8(loc) || IsWildArea8Armor(loc); // wild area gets boosted up to level 60 post-game
|
||||
bool isBoosted = canBoostTo60 && pkm.Met_Location == 60;
|
||||
// wild area gets boosted up to level 60 post-game
|
||||
bool isBoosted = pkm.Met_Level == 60 && (IsWildArea8(Location) || IsWildArea8Armor(Location));
|
||||
|
||||
foreach (var slot in Slots)
|
||||
{
|
||||
foreach (var evo in chain)
|
||||
|
|
Loading…
Add table
Reference in a new issue