mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Fix pk8 tr flag check (off by 100)
This commit is contained in:
parent
b6ac0de3f7
commit
6993f9d661
1 changed files with 1 additions and 1 deletions
|
@ -747,7 +747,7 @@ public sealed class MiscVerifier : Verifier
|
|||
{
|
||||
if (!pk.GetMoveRecordFlag(i))
|
||||
continue;
|
||||
if ((pi ??= GetPersonal(evos[0])).TMHM[i])
|
||||
if ((pi ??= GetPersonal(evos[0])).TMHM[i + PersonalInfo8SWSH.CountTM])
|
||||
continue;
|
||||
|
||||
// Calyrex-0 can have TR flags for Calyrex-1/2 after it has force unlearned them.
|
||||
|
|
Loading…
Add table
Reference in a new issue