From 42453bdcd8a5ecef9ead307bb27f88f7a679a288 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 22 Aug 2020 14:12:16 -0700 Subject: [PATCH] Update EncounterArea8.cs --- PKHeX.Core/Legality/Areas/EncounterArea8.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PKHeX.Core/Legality/Areas/EncounterArea8.cs b/PKHeX.Core/Legality/Areas/EncounterArea8.cs index a37882aac..ecec581ea 100644 --- a/PKHeX.Core/Legality/Areas/EncounterArea8.cs +++ b/PKHeX.Core/Legality/Areas/EncounterArea8.cs @@ -29,9 +29,9 @@ public override bool IsMatchLocation(int location) public override IEnumerable GetMatchingSlots(PKM pkm, IReadOnlyList 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)