mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 16:41:03 -05:00
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
This commit is contained in:
parent
3eb55d7171
commit
0b0020aa6d
|
|
@ -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++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user