From 6d61a97247b881f423934d3b9ab5a9aa080a98f9 Mon Sep 17 00:00:00 2001 From: Ammako <43770697+Ammako@users.noreply.github.com> Date: Sat, 16 Nov 2019 16:15:09 -0500 Subject: [PATCH] Fix Gen. 2 key items and balls (#2432) --- PKHeX.Core/Saves/SAV2.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Saves/SAV2.cs b/PKHeX.Core/Saves/SAV2.cs index f35f88238..b5ef7e2f3 100644 --- a/PKHeX.Core/Saves/SAV2.cs +++ b/PKHeX.Core/Saves/SAV2.cs @@ -454,8 +454,8 @@ namespace PKHeX.Core } private static ushort[] LegalItems => Legal.Pouch_Items_GSC; - private static ushort[] LegalKeyItems => Legal.Pouch_Ball_GSC; - private ushort[] LegalBalls => Version == GameVersion.C ? Legal.Pouch_Key_C : Legal.Pouch_Key_GS; + private ushort[] LegalKeyItems => Version == GameVersion.C? Legal.Pouch_Key_C : Legal.Pouch_Key_GS; + private static ushort[] LegalBalls => Legal.Pouch_Ball_GSC; private static ushort[] LegalTMHMs => Legal.Pouch_TMHM_GSC; public override InventoryPouch[] Inventory