diff options
| author | Chaplain <aionthefirst@gmail.com> | 2012-05-10 19:39:29 +0300 |
|---|---|---|
| committer | Chaplain <aionthefirst@gmail.com> | 2012-05-10 20:42:07 +0300 |
| commit | 469ba0b0e797c64040d0b4a3fbe371d8d5baa0b6 (patch) | |
| tree | 3083b91aa1a349166b9e6f018e5e520ad0686e6a /src/server/game/AI/ScriptedAI | |
| parent | 9d5c59939f0ebb5e7a078ebac67b9cc0029fb7d9 (diff) | |
Clean up for 58f63509cd4
*restore const methods in spellauraeffects
*fix typo in Unit::CalculateMeleeDamage thx bytewarrior
*minor speed up in SpellInfo::GetMaxTicks() thx Warpten
*deleted duble ';;' thx bytewarrior
*speed up in SpellInfo::GetMaxTicks() thx goes to Vincent-Michael
Diffstat (limited to 'src/server/game/AI/ScriptedAI')
| -rw-r--r-- | src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp index 688d48b41ad..2243734f642 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp @@ -383,7 +383,7 @@ void npc_escortAI::FillPointMovementListForCreature() if (movePoints.empty()) return; - ScriptPointVector::const_iterator itrEnd = movePoints.end();; + ScriptPointVector::const_iterator itrEnd = movePoints.end(); for (ScriptPointVector::const_iterator itr = movePoints.begin(); itr != itrEnd; ++itr) { Escort_Waypoint point(itr->uiPointId, itr->fX, itr->fY, itr->fZ, itr->uiWaitTime); |
