mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-12 23:37:07 +00:00
Update SAV_Database.cs
This commit is contained in:
parent
5bf43cfc19
commit
5ef8cfaf2e
1 changed files with 4 additions and 4 deletions
|
@ -419,10 +419,10 @@ public partial class SAV_Database : Form
|
|||
|
||||
private static Func<PKM, bool>? GetFilterForSaveFile(SaveFile sav) => sav switch
|
||||
{
|
||||
SAV8SWSH => static pk => pk is PK9 || PersonalTable.SV.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV8BS => static pk => pk is PK8 || PersonalTable.SWSH.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV8LA => static pk => pk is PB8 || PersonalTable.BDSP.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV9SV => static pk => pk is PA8 || PersonalTable.LA.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV8SWSH => static pk => pk is PK8 || PersonalTable.SWSH.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV8BS => static pk => pk is PB8 || PersonalTable.BDSP.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV8LA => static pk => pk is PA8 || PersonalTable.LA.IsPresentInGame(pk.Species, pk.Form),
|
||||
SAV9SV => static pk => pk is PK9 || PersonalTable.SV.IsPresentInGame(pk.Species, pk.Form),
|
||||
_ => null,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue