mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-20 09:44:28 -05:00
Don't add TR moves as possible for BDSP origin
This commit is contained in:
@@ -202,7 +202,8 @@ private static IEnumerable<int> GetMovesForGeneration(PKM pk, IReadOnlyList<EvoC
|
||||
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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user