Update GetIsNative for KChart

We want to show that the Species is native if it appears in any Dex (Galar, Armor, Crown), not just the main Galar Dex.
This commit is contained in:
sora10pls 2020-11-03 12:02:08 -05:00
parent c60ae57ab0
commit 5c401fa936

View File

@ -90,7 +90,7 @@ private static bool GetIsNative(PersonalInfo personalInfo, int s)
return personalInfo switch
{
PersonalInfoSM _ => s > 721 || Legal.PastGenAlolanNatives.Contains(s),
PersonalInfoSWSH ss => ss.PokeDexIndex > 0,
PersonalInfoSWSH ss => ss.IsInDex,
_ => true,
};
}