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

View File

@@ -165,7 +165,7 @@ class example_creature : public CreatureScript
// *** HANDLED FUNCTION ***
//Update AI is called Every single map update (roughly once every 50ms if a player is within the grid)
void UpdateAI(const uint32 uiDiff)
void UpdateAI(uint32 uiDiff)
{
//Out of combat timers
if (!me->getVictim())