mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Fix Gen. 2 key items and balls (#2432)
This commit is contained in:
parent
0716e50fd6
commit
6d61a97247
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue