mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
make enc move gen tree fetch non-pkm specific
just need to get all evo chains possible fetching a GO leafeon, need to reverse leafeon->eevee, but the LGPE evo chains don't know about leafeon works fine now
This commit is contained in:
parent
496a3a45ff
commit
c8a141534c
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ namespace PKHeX.Core
|
|||
public static IEnumerable<IEncounterable> GenerateVersionEncounters(PKM pk, IEnumerable<int> moves, GameVersion version)
|
||||
{
|
||||
pk.Version = (int)version;
|
||||
var et = EvolutionTree.GetEvolutionTree(pk, pk.Species <= Legal.MaxSpeciesID_7_USUM ? 7 : PKX.Generation); // temp workaround as G8 doesn't have all evolutions
|
||||
var et = EvolutionTree.GetEvolutionTree(pk.Format);
|
||||
var dl = et.GetValidPreEvolutions(pk, maxLevel: 100, skipChecks: true);
|
||||
int[] needs = GetNeededMoves(pk, moves, dl);
|
||||
|
||||
|
|
Loading…
Reference in a new issue