Don't add TR moves as possible for BDSP origin

This commit is contained in:
Kurt 2021-12-06 00:01:13 -08:00
parent cacd6e9965
commit fcd97d5989

View file

@ -202,7 +202,8 @@ namespace PKHeX.Core
moves = moves.Concat(MoveEgg.GetSharedEggMoves(pk, generation));
// TR moves -- default logic checks the TR flags, so we need to add all possible ones here.
moves = moves.Concat(MoveTechnicalMachine.GetAllPossibleRecords(pk.Species, pk.Form));
if (!pk.BDSP)
moves = moves.Concat(MoveTechnicalMachine.GetAllPossibleRecords(pk.Species, pk.Form));
}
if (pk.Species == (int)Species.Shedinja)
{