Update MoveSetApplicator.cs

This commit is contained in:
Kurt 2022-01-03 22:27:20 -08:00
parent 36bf73818e
commit a08330ffd4

View file

@ -106,6 +106,9 @@ namespace PKHeX.Core
if (ug.CanBeUndergroundMove(move))
return new[] { move, 0, 0, 0 };
}
if (ug.GetBaseEggMove(out int any))
return new[] { any, 0, 0, 0 };
}
var encounter = EncounterSuggestion.GetSuggestedMetInfo(legal.pkm);