mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-05 21:17:14 -05:00
added missing GameVersion check (#2340)
This commit is contained in:
parent
a47036d2f4
commit
e911363399
|
|
@ -62,6 +62,8 @@ private void ReadMain()
|
|||
string[] FlyDestA = null;
|
||||
switch (SAV.Version)
|
||||
{
|
||||
case GameVersion.B:
|
||||
case GameVersion.W:
|
||||
case GameVersion.BW:
|
||||
ofsFly = 0x204B2;
|
||||
FlyDestA = new[] {
|
||||
|
|
@ -77,6 +79,8 @@ private void ReadMain()
|
|||
10, 13, 12, 14
|
||||
};
|
||||
break;
|
||||
case GameVersion.B2:
|
||||
case GameVersion.W2:
|
||||
case GameVersion.B2W2:
|
||||
ofsFly = 0x20392;
|
||||
FlyDestA = new[] {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user