Index: UnitAI.js =================================================================== --- UnitAI.js +++ UnitAI.js @@ -1816,6 +1816,10 @@ this.SetGathererAnimationOverride(true); this.SelectAnimation("move"); + { + var speed = this.GetRunSpeed(); + this.SetMoveSpeed(speed); + } this.StartTimer(1000, 1000); }, @@ -1822,7 +1826,8 @@ "leave": function() { // Show carried resources when walking. this.SetGathererAnimationOverride(); - + this.SelectAnimation("move"); + this.SetMoveSpeed(this.GetWalkSpeed()); this.StopTimer(); },