diff --git a/PkmnLibSharp/Battling/ChoiceTurn/MoveTurnChoice.cs b/PkmnLibSharp/Battling/ChoiceTurn/MoveTurnChoice.cs index 19edfa7..ecc1cc9 100644 --- a/PkmnLibSharp/Battling/ChoiceTurn/MoveTurnChoice.cs +++ b/PkmnLibSharp/Battling/ChoiceTurn/MoveTurnChoice.cs @@ -20,7 +20,7 @@ namespace PkmnLibSharp.Battling.ChoiceTurn var ptr = Creaturelib.Generated.AttackTurnChoice.GetAttack(Ptr); if (TryResolvePointer(ptr, out _move)) return _move!; - _move = new LearnedMove(ptr); + _move = Constructor.Active.ConstructLearnedMove(ptr)!; return _move; } }