From 4579a66a38cc33d93035a037cc103cfe2ddbca48 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 4 Apr 2021 21:54:24 -0700 Subject: [PATCH] Fix deferral for wild slots Base method checks wurmple (not available in swsh), removed. Hidden ability check returns Partial for any species that cannot be patched, and Deferred for any patched; we don't care, because there aren't any wild species that can't be patched in swsh. --- .../Legality/Encounters/EncounterSlot/EncounterSlot8.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8.cs b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8.cs index d55a81566..6b32b00a1 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterSlot/EncounterSlot8.cs @@ -73,10 +73,6 @@ private int GetFlawlessIVCount() public override EncounterMatchRating GetMatchRating(PKM pkm) { - var rating = base.GetMatchRating(pkm); - if (rating != EncounterMatchRating.Match) - return rating; - // Glimwood Tangle does not spawn Symbol encounters, only Hidden. if (Location is 76 && ((EncounterArea8)Area).PermitCrossover) return EncounterMatchRating.PartialMatch;