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
This commit is contained in:
Kurt 2017-07-05 18:40:47 -07:00
parent bbac3dc7ee
commit 2ef5b81b15

View file

@ -598,7 +598,7 @@ namespace PKHeX.Core
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: