Core/Scripts: Removed useless const modifier on method parameters accepting primitive types passed by value

This commit is contained in:
Shauren
2013-02-19 17:35:27 +01:00
parent 6b63a98ab0
commit 5b414bb813
446 changed files with 1147 additions and 1147 deletions
@@ -184,7 +184,7 @@ void FollowerAI::EnterEvadeMode()
Reset();
}
void FollowerAI::UpdateAI(const uint32 uiDiff)
void FollowerAI::UpdateAI(uint32 uiDiff)
{
if (HasFollowState(STATE_FOLLOW_INPROGRESS) && !me->getVictim())
{
@@ -246,7 +246,7 @@ void FollowerAI::UpdateAI(const uint32 uiDiff)
UpdateFollowerAI(uiDiff);
}
void FollowerAI::UpdateFollowerAI(const uint32 /*uiDiff*/)
void FollowerAI::UpdateFollowerAI(uint32 /*uiDiff*/)
{
if (!UpdateVictim())
return;