Skip to content

Commit

Permalink
Re-add ht memory check for 1->7
Browse files Browse the repository at this point in the history
GenNumber for VC mons was changed to 1; allow this to be checked.
  • Loading branch information
kwsch committed Feb 15, 2017
1 parent 0f45add commit f001d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PKHeX/Legality/Checks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ private void verifyHTMemory()
if (!History.Valid)
return;

if (pkm.GenNumber == 7)
if (pkm.GenNumber == 7 || pkm.GenNumber == 1)
{
bool check = pkm.VC1 || pkm.HT_Memory != 0;
if (!check)
Expand Down

0 comments on commit f001d4d

Please sign in to comment.