mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
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:
parent
bbac3dc7ee
commit
2ef5b81b15
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue