mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-15 04:32:35 -04:00
Core/Scripts: Removed useless const modifier on method parameters accepting primitive types passed by value
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user