From 0b0020aa6d1a1bce177a02a33ec00903695e8188 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 9 Jun 2017 21:22:33 -0700 Subject: [PATCH] Fix florges evolution check getFormeIndex returns the base species (670 or 671), which duplicates entries on the chain the evolution checks use the forme ID but also return 670/671, thus making this unnecessary closes #1202 --- PKHeX.Core/Legality/Structures/EvolutionTree.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/PKHeX.Core/Legality/Structures/EvolutionTree.cs b/PKHeX.Core/Legality/Structures/EvolutionTree.cs index 5e590588d..6df27f16b 100644 --- a/PKHeX.Core/Legality/Structures/EvolutionTree.cs +++ b/PKHeX.Core/Legality/Structures/EvolutionTree.cs @@ -105,14 +105,6 @@ private void fixEvoTreeSM() Lineage[Personal.getFormeIndex(422 + 1, 1)].Chain.Insert(0, Lineage[422 + 1].Chain[0]); Lineage[422+1].Chain.RemoveAt(0); - // Flabébé -- Doesn't contain evo info for forms 1-4, copy. - var fbb = Lineage[669+1].Chain[0]; - for (int i = 1; i <= 4; i++) // NOT AZ - { - Lineage[Personal.getFormeIndex(669+1, i)].Chain.Insert(0, fbb); - Lineage[Personal.getFormeIndex(669+2, i)].Chain.Insert(0, fbb); - } - // Gourgeist -- Sizes are still relevant. Formes are in reverse order. for (int i = 1; i <= 3; i++) {