From c3051b30023b7bf31af9c1ae64bf2febd9eee40b Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 16 Sep 2021 12:50:55 -0700 Subject: [PATCH] Fix special beam move order Differs from gen4 which has frenzy plant last --- PKHeX.Core/Legality/Tables/Tables6.cs | 2 +- PKHeX.Core/Legality/Tables/Tables8.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Legality/Tables/Tables6.cs b/PKHeX.Core/Legality/Tables/Tables6.cs index 8016bdfbd..4563297db 100644 --- a/PKHeX.Core/Legality/Tables/Tables6.cs +++ b/PKHeX.Core/Legality/Tables/Tables6.cs @@ -218,9 +218,9 @@ public static partial class Legal (int)Move.GrassPledge, (int)Move.FirePledge, (int)Move.WaterPledge, + (int)Move.FrenzyPlant, (int)Move.BlastBurn, (int)Move.HydroCannon, - (int)Move.FrenzyPlant, (int)Move.DracoMeteor, (int)Move.DragonAscent, }; diff --git a/PKHeX.Core/Legality/Tables/Tables8.cs b/PKHeX.Core/Legality/Tables/Tables8.cs index 346503b69..82b41af20 100644 --- a/PKHeX.Core/Legality/Tables/Tables8.cs +++ b/PKHeX.Core/Legality/Tables/Tables8.cs @@ -697,9 +697,9 @@ public static partial class Legal (int)Move.GrassPledge, (int)Move.FirePledge, (int)Move.WaterPledge, + (int)Move.FrenzyPlant, (int)Move.BlastBurn, (int)Move.HydroCannon, - (int)Move.FrenzyPlant, (int)Move.DracoMeteor, (int)Move.SteelBeam, };