mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Fix gen6 typetutor order
tfw nobody noticed for so long only keep tutors6 -- they're the same table.
This commit is contained in:
parent
9da79379f8
commit
cf29c912be
3 changed files with 2 additions and 5 deletions
|
@ -1702,8 +1702,7 @@ namespace PKHeX.Core
|
|||
break;
|
||||
case 7:
|
||||
info = PersonalTable.SM[species];
|
||||
// Type Tutors -- Pledge moves and High BP moves switched places in G7+
|
||||
moves.AddRange(TypeTutor7.Where((t, i) => info.TypeTutors[i]));
|
||||
moves.AddRange(TypeTutor6.Where((t, i) => info.TypeTutors[i]));
|
||||
// No special tutors in G7
|
||||
break;
|
||||
|
||||
|
|
|
@ -214,7 +214,7 @@ namespace PKHeX.Core
|
|||
15, 19, 57, 70, 127,
|
||||
};
|
||||
|
||||
internal static readonly int[] TypeTutor6 = {338, 307, 308, 520, 519, 518, 434, 620};
|
||||
internal static readonly int[] TypeTutor6 = {520, 519, 518, 338, 307, 308, 434, 620};
|
||||
|
||||
internal static readonly int[][] Tutors_AO =
|
||||
{
|
||||
|
|
|
@ -524,8 +524,6 @@ namespace PKHeX.Core
|
|||
// No HMs
|
||||
};
|
||||
|
||||
internal static readonly int[] TypeTutor7 = {520, 519, 518, 338, 307, 308, 434, 620};
|
||||
|
||||
internal static readonly int[] MovePP_SM =
|
||||
{
|
||||
00,
|
||||
|
|
Loading…
Reference in a new issue