From 2ef5b81b15e5ff0bfa936f12a22e3e2edd8fdb9f Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 5 Jul 2017 18:40:47 -0700 Subject: [PATCH] Add gen4 cutecharm for valid gen4 wild pidivs encounter is screened for charm validity prior to this type check, so no further checks are required --- PKHeX.Core/Legality/RNG/MethodFinder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/RNG/MethodFinder.cs b/PKHeX.Core/Legality/RNG/MethodFinder.cs index 008c97587..ac643f2a6 100644 --- a/PKHeX.Core/Legality/RNG/MethodFinder.cs +++ b/PKHeX.Core/Legality/RNG/MethodFinder.cs @@ -598,7 +598,7 @@ public static bool IsCompatible4(this PIDType val, IEncounterable encounter, PKM return val == PIDType.Pokewalker; return s.Shiny == true ? val == PIDType.ChainShiny : val == PIDType.Method_1; case EncounterSlot _: - return val == PIDType.Method_1; + return val == PIDType.Method_1 || val == PIDType.CuteCharm; case PGT _: // manaphy return IsG4ManaphyPIDValid(val, pkm); default: