From 681d64d007e0187fe2f9cbb0371b8b0b5a25090e Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 25 Oct 2020 09:35:19 -0700 Subject: [PATCH] Update AltFormInfo.cs --- PKHeX.Core/Legality/Tables/AltFormInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Tables/AltFormInfo.cs b/PKHeX.Core/Legality/Tables/AltFormInfo.cs index b0ab6edd6..9c9d2cb3f 100644 --- a/PKHeX.Core/Legality/Tables/AltFormInfo.cs +++ b/PKHeX.Core/Legality/Tables/AltFormInfo.cs @@ -32,7 +32,7 @@ public static bool IsBattleOnlyForm(int species, int form, int format) return false; default: - return true; + return form != 0; } }