diff --git a/PKHeX.Core/PKM/PK1.cs b/PKHeX.Core/PKM/PK1.cs index 04b64fe14..ce3605181 100644 --- a/PKHeX.Core/PKM/PK1.cs +++ b/PKHeX.Core/PKM/PK1.cs @@ -108,7 +108,7 @@ private void SetSpeciesValues(int value) return; var table = EvolutionTree.GetEvolutionTree(1); - var evos = table.GetValidPreEvolutions(this, maxLevel: 100, maxSpeciesOrigin: -1, skipChecks: true); + var evos = table.GetValidPreEvolutions(this, maxLevel: 100, maxSpeciesOrigin: Legal.MaxSpeciesID_1, skipChecks: true); var baseSpecies = evos[^1].Species; if (IsCatchRatePreEvolutionRate(baseSpecies, value, rate)) return;