mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Don't add TR moves as possible for BDSP origin
This commit is contained in:
parent
cacd6e9965
commit
fcd97d5989
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue