diff options
author | Aokromes <jipr@hotmail.com> | 2013-10-28 09:57:48 -0700 |
---|---|---|
committer | Aokromes <jipr@hotmail.com> | 2013-10-28 09:57:48 -0700 |
commit | 5cfd180247226f404584a8927d0a9908848ab8c9 (patch) | |
tree | 116a048c21606e3b4c3d5244c0756d6a46238dd9 /src/server/game/AI/CreatureAIImpl.h | |
parent | cf72f7cc5cf13607dd7353b8d940d56679b6956b (diff) | |
parent | 7a7ad4a60ac2f0a082769551bb0b885a0f0d4962 (diff) |
Merge pull request #11138 from Ascathor/master
Core/Code: Unify codestyle for brackets: {} to { }.
Diffstat (limited to 'src/server/game/AI/CreatureAIImpl.h')
-rw-r--r-- | src/server/game/AI/CreatureAIImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/AI/CreatureAIImpl.h b/src/server/game/AI/CreatureAIImpl.h index 6c5cb5622b3..6b190938596 100644 --- a/src/server/game/AI/CreatureAIImpl.h +++ b/src/server/game/AI/CreatureAIImpl.h @@ -327,7 +327,7 @@ class EventMap typedef std::multimap<uint32, uint32> EventStore; public: - EventMap() : _time(0), _phase(0) {} + EventMap() : _time(0), _phase(0) { } /** * @name Reset @@ -686,7 +686,7 @@ enum AICondition struct AISpellInfoType { AISpellInfoType() : target(AITARGET_SELF), condition(AICOND_COMBAT) - , cooldown(AI_DEFAULT_COOLDOWN), realCooldown(0), maxRange(0.0f){} + , cooldown(AI_DEFAULT_COOLDOWN), realCooldown(0), maxRange(0.0f){ } AITarget target; AICondition condition; uint32 cooldown; |