mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-11 11:25:16 -05: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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user