From b34977d498c9a871afe61b2b3feb463670b76797 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 26 Nov 2021 21:16:13 -0800 Subject: [PATCH] Fix feebas prism scale evo criteria ban --- PKHeX.Core/Legality/Evolutions/EvolutionTree.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX.Core/Legality/Evolutions/EvolutionTree.cs b/PKHeX.Core/Legality/Evolutions/EvolutionTree.cs index 4d3f4042b..e93af6ec9 100644 --- a/PKHeX.Core/Legality/Evolutions/EvolutionTree.cs +++ b/PKHeX.Core/Legality/Evolutions/EvolutionTree.cs @@ -176,8 +176,8 @@ namespace PKHeX.Core private void FixEvoTreeBS() { - BanEvo((int)Species.Glaceon, 0, pkm => pkm.CurrentLevel == pkm.Met_Level); // Ice Stone is unreleased, requires Route 217 Ice Rock instead - BanEvo((int)Species.Milotic, 0, pkm => pkm.CurrentLevel == pkm.Met_Level); // Prism Scale is unreleased, requires 170 Beauty instead + BanEvo((int)Species.Glaceon, 0, pkm => pkm.CurrentLevel == pkm.Met_Level); // Ice Stone is unreleased, requires Route 217 Ice Rock Level Up instead + BanEvo((int)Species.Milotic, 0, pkm => pkm is IContestStats { CNT_Beauty: < 170 } || pkm.CurrentLevel == pkm.Met_Level); // Prism Scale is unreleased, requires 170 Beauty Level Up instead } private void BanEvo(int species, int form, Func func)