diff --git a/Source/Game/AI/SmartScripts/SmartScript.cs b/Source/Game/AI/SmartScripts/SmartScript.cs index 25ca36f3e..2de488c03 100644 --- a/Source/Game/AI/SmartScripts/SmartScript.cs +++ b/Source/Game/AI/SmartScripts/SmartScript.cs @@ -2417,7 +2417,7 @@ namespace Game.AI foreach (var target in targets) if (IsCreature(target)) - _me.SetSpeed((UnitMoveType)e.Action.movementSpeed.movementType, speed); + target.ToCreature().SetSpeed((UnitMoveType)e.Action.movementSpeed.movementType, speed); break; }