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 @@ 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: