diff options
| author | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-10-22 20:23:07 +0200 | 
|---|---|---|
| committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-10-22 20:24:05 +0200 | 
| commit | 9802c7b89180c594da8eb2e2554d7836c5dfeb9b (patch) | |
| tree | c890f4cfdae89106756b0b46c9bd363f0472a05c /src | |
| parent | 0f92d513f8b544d48d868285fbe470c097e07a44 (diff) | |
Scripts/Misc: Coding Style unification? (by Aokromes)
Diffstat (limited to 'src')
272 files changed, 493 insertions, 494 deletions
diff --git a/src/server/scripts/Commands/cs_group.cpp b/src/server/scripts/Commands/cs_group.cpp index 1c0949398b9..fda34586f0c 100644 --- a/src/server/scripts/Commands/cs_group.cpp +++ b/src/server/scripts/Commands/cs_group.cpp @@ -263,7 +263,6 @@ public:          // Get ALL the variables!          Player* playerTarget;          uint32 phase = 0; -        uint32 groupCounter = 0;          uint64 guidTarget;          std::string nameTarget;          std::string zoneName; diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp index 1b5a42a83ef..6dbcdffca72 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp @@ -50,7 +50,7 @@ public:      struct npc_water_elementalAI : public ScriptedAI      { -        npc_water_elementalAI(Creature* creature) : ScriptedAI(creature) {} +        npc_water_elementalAI(Creature* creature) : ScriptedAI(creature) { }          uint32 waterBoltTimer;          uint64 balindaGUID; @@ -99,7 +99,7 @@ public:      struct boss_balindaAI : public ScriptedAI      { -        boss_balindaAI(Creature* creature) : ScriptedAI(creature), summons(me) {} +        boss_balindaAI(Creature* creature) : ScriptedAI(creature), summons(me) { }          uint32 arcaneExplosionTimer;          uint32 coneOfColdTimer; diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp index 8bddff621fa..7559d71bf78 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp @@ -45,7 +45,7 @@ public:      struct boss_drektharAI : public ScriptedAI      { -        boss_drektharAI(Creature* creature) : ScriptedAI(creature) {} +        boss_drektharAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WhirlwindTimer;          uint32 Whirlwind2Timer; diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp index 1dcf70d28b9..4f91e57be50 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp @@ -40,7 +40,7 @@ public:      struct boss_galvangarAI : public ScriptedAI      { -        boss_galvangarAI(Creature* creature) : ScriptedAI(creature) {} +        boss_galvangarAI(Creature* creature) : ScriptedAI(creature) { }          uint32 CleaveTimer;          uint32 FrighteningShoutTimer; diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp index f2ba479ac86..0e5370f0f07 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp @@ -42,7 +42,7 @@ public:      struct boss_vanndarAI : public ScriptedAI      { -        boss_vanndarAI(Creature* creature) : ScriptedAI(creature) {} +        boss_vanndarAI(Creature* creature) : ScriptedAI(creature) { }          uint32 AvatarTimer;          uint32 ThunderclapTimer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp index e9a6b15dcf8..89b4dc5324f 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp @@ -359,7 +359,7 @@ public:      struct npc_phalanxAI : public ScriptedAI      { -        npc_phalanxAI(Creature* creature) : ScriptedAI(creature) {} +        npc_phalanxAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ThunderClap_Timer;          uint32 FireballVolley_Timer; @@ -613,7 +613,7 @@ public:      struct npc_dughal_stormwingAI : public npc_escortAI      { -        npc_dughal_stormwingAI(Creature* creature) : npc_escortAI(creature) {} +        npc_dughal_stormwingAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -1125,7 +1125,7 @@ public:      struct npc_tobias_seecherAI : public npc_escortAI      { -        npc_tobias_seecherAI(Creature* creature) : npc_escortAI(creature) {} +        npc_tobias_seecherAI(Creature* creature) : npc_escortAI(creature) { }          void EnterCombat(Unit* who) OVERRIDE {}          void Reset() OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp index 3a4f734429c..feadc006daf 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp @@ -36,7 +36,7 @@ public:      struct boss_ambassador_flamelashAI : public ScriptedAI      { -        boss_ambassador_flamelashAI(Creature* creature) : ScriptedAI(creature) {} +        boss_ambassador_flamelashAI(Creature* creature) : ScriptedAI(creature) { }          uint32 FireBlast_Timer;          uint32 Spirit_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp index 63a94ca616a..83869ddc631 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp @@ -40,7 +40,7 @@ public:      struct boss_anubshiahAI : public ScriptedAI      { -        boss_anubshiahAI(Creature* creature) : ScriptedAI(creature) {} +        boss_anubshiahAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ShadowBolt_Timer;          uint32 CurseOfTongues_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp index 80bfa651301..40d176b574b 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp @@ -38,7 +38,7 @@ public:      struct boss_general_angerforgeAI : public ScriptedAI      { -        boss_general_angerforgeAI(Creature* creature) : ScriptedAI(creature) {} +        boss_general_angerforgeAI(Creature* creature) : ScriptedAI(creature) { }          uint32 MightyBlow_Timer;          uint32 HamString_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp index d79c4d191b6..f865a6f6742 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp @@ -37,7 +37,7 @@ public:      struct boss_gorosh_the_dervishAI : public ScriptedAI      { -        boss_gorosh_the_dervishAI(Creature* creature) : ScriptedAI(creature) {} +        boss_gorosh_the_dervishAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WhirlWind_Timer;          uint32 MortalStrike_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp index 504fca44c4c..3ac15bfcab4 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp @@ -38,7 +38,7 @@ public:      struct boss_grizzleAI : public ScriptedAI      { -        boss_grizzleAI(Creature* creature) : ScriptedAI(creature) {} +        boss_grizzleAI(Creature* creature) : ScriptedAI(creature) { }          uint32 GroundTremor_Timer;          uint32 Frenzy_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp index 7a98cc321dc..f381a1e2a9c 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp @@ -39,7 +39,7 @@ public:      struct boss_high_interrogator_gerstahnAI : public ScriptedAI      { -        boss_high_interrogator_gerstahnAI(Creature* creature) : ScriptedAI(creature) {} +        boss_high_interrogator_gerstahnAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ShadowWordPain_Timer;          uint32 ManaBurn_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp index 998e7b17897..2c1d078fd36 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp @@ -42,7 +42,7 @@ public:      struct boss_magmusAI : public ScriptedAI      { -        boss_magmusAI(Creature* creature) : ScriptedAI(creature) {} +        boss_magmusAI(Creature* creature) : ScriptedAI(creature) { }          uint32 FieryBurst_Timer;          uint32 WarStomp_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp index 9021649a61e..21c357d3b31 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp @@ -41,7 +41,7 @@ public:      struct boss_moira_bronzebeardAI : public ScriptedAI      { -        boss_moira_bronzebeardAI(Creature* creature) : ScriptedAI(creature) {} +        boss_moira_bronzebeardAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Heal_Timer;          uint32 MindBlast_Timer; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp index a080e117583..fbec94887b2 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp @@ -76,7 +76,7 @@ public:      struct instance_blackrock_depths_InstanceMapScript : public InstanceScript      { -        instance_blackrock_depths_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_blackrock_depths_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 encounter[MAX_ENCOUNTER];          std::string str_data; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp index 59581204b05..009c22e40b3 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp @@ -43,7 +43,7 @@ public:      struct boss_drakkisathAI : public BossAI      { -        boss_drakkisathAI(Creature* creature) : BossAI(creature, DATA_GENERAL_DRAKKISATH) {} +        boss_drakkisathAI(Creature* creature) : BossAI(creature, DATA_GENERAL_DRAKKISATH) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp index f1bd81f2e6a..9f22c2c1e85 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp @@ -46,7 +46,7 @@ public:      struct boss_gizrul_the_slavenerAI : public BossAI      { -       boss_gizrul_the_slavenerAI(Creature* creature) : BossAI(creature, DATA_GIZRUL_THE_SLAVENER) {} +       boss_gizrul_the_slavenerAI(Creature* creature) : BossAI(creature, DATA_GIZRUL_THE_SLAVENER) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp index 630d6ff2a0d..b79a6e4733e 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp @@ -45,7 +45,7 @@ public:      struct boss_halyconAI : public BossAI      { -        boss_halyconAI(Creature* creature) : BossAI(creature, DATA_HALYCON) {} +        boss_halyconAI(Creature* creature) : BossAI(creature, DATA_HALYCON) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp index 54ed5d44e34..5b5e9bc082a 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp @@ -44,7 +44,7 @@ public:      struct boss_highlordomokkAI : public BossAI      { -        boss_highlordomokkAI(Creature* creature) : BossAI(creature, DATA_HIGHLORD_OMOKK) {} +        boss_highlordomokkAI(Creature* creature) : BossAI(creature, DATA_HIGHLORD_OMOKK) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp index b54c8f11f34..26540eb38a6 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp @@ -46,7 +46,7 @@ public:      struct boss_lord_valthalakAI : public BossAI      { -        boss_lord_valthalakAI(Creature* creature) : BossAI(creature, DATA_LORD_VALTHALAK) {} +        boss_lord_valthalakAI(Creature* creature) : BossAI(creature, DATA_LORD_VALTHALAK) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp index 608cb75bbb2..f9b0441af77 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp @@ -45,7 +45,7 @@ public:      struct boss_mothersmolderwebAI : public BossAI      { -        boss_mothersmolderwebAI(Creature* creature) : BossAI(creature, DATA_MOTHER_SMOLDERWEB) {} +        boss_mothersmolderwebAI(Creature* creature) : BossAI(creature, DATA_MOTHER_SMOLDERWEB) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp index 2b68b640720..2a448898813 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp @@ -57,7 +57,7 @@ public:      struct boss_overlordwyrmthalakAI : public BossAI      { -        boss_overlordwyrmthalakAI(Creature* creature) : BossAI(creature, DATA_OVERLORD_WYRMTHALAK) {} +        boss_overlordwyrmthalakAI(Creature* creature) : BossAI(creature, DATA_OVERLORD_WYRMTHALAK) { }          bool Summoned; diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp index 57c3dfac7ff..1c40385c0fd 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp @@ -75,7 +75,7 @@ public:      struct boss_pyroguard_emberseerAI : public BossAI      { -        boss_pyroguard_emberseerAI(Creature* creature) : BossAI(creature, DATA_PYROGAURD_EMBERSEER) {} +        boss_pyroguard_emberseerAI(Creature* creature) : BossAI(creature, DATA_PYROGAURD_EMBERSEER) { }          void Reset() OVERRIDE          { @@ -340,7 +340,7 @@ public:      struct npc_blackhand_incarceratorAI : public ScriptedAI      { -        npc_blackhand_incarceratorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_blackhand_incarceratorAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp index a20822839e6..4dbade9e07b 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp @@ -40,7 +40,7 @@ public:      struct boss_quatermasterzigrisAI : public BossAI      { -        boss_quatermasterzigrisAI(Creature* creature) : BossAI(creature, DATA_QUARTERMASTER_ZIGRIS) {} +        boss_quatermasterzigrisAI(Creature* creature) : BossAI(creature, DATA_QUARTERMASTER_ZIGRIS) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp index 1936e5e72d0..7fcb201a5ad 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp @@ -46,7 +46,7 @@ public:      struct boss_shadowvoshAI : public BossAI      { -        boss_shadowvoshAI(Creature* creature) : BossAI(creature, DATA_SHADOW_HUNTER_VOSHGAJIN) {} +        boss_shadowvoshAI(Creature* creature) : BossAI(creature, DATA_SHADOW_HUNTER_VOSHGAJIN) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp index c4abaac158c..8cb0dfbce64 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp @@ -46,7 +46,7 @@ public:      struct boss_thebeastAI : public BossAI      { -        boss_thebeastAI(Creature* creature) : BossAI(creature, DATA_THE_BEAST) {} +        boss_thebeastAI(Creature* creature) : BossAI(creature, DATA_THE_BEAST) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp index afee357aad5..76b673eed06 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp @@ -46,7 +46,7 @@ public:      struct boss_urok_doomhowlAI : public BossAI      { -        boss_urok_doomhowlAI(Creature* creature) : BossAI(creature, DATA_UROK_DOOMHOWL) {} +        boss_urok_doomhowlAI(Creature* creature) : BossAI(creature, DATA_UROK_DOOMHOWL) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp index e3423fd02b6..ccd74b204ce 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp @@ -52,7 +52,7 @@ public:      struct boss_warmastervooneAI : public BossAI      { -        boss_warmastervooneAI(Creature* creature) : BossAI(creature, DATA_WARMASTER_VOONE) {} +        boss_warmastervooneAI(Creature* creature) : BossAI(creature, DATA_WARMASTER_VOONE) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp index 5eabc11618b..420c9fcc290 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp @@ -108,7 +108,7 @@ class npc_firesworn : public CreatureScript          struct npc_fireswornAI : public ScriptedAI          { -            npc_fireswornAI(Creature* creature) : ScriptedAI(creature) {} +            npc_fireswornAI(Creature* creature) : ScriptedAI(creature) { }              uint32 immolateTimer; diff --git a/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp b/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp index 7e7d1b72415..f029e8505d4 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp +++ b/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp @@ -57,7 +57,7 @@ class instance_deadmines : public InstanceMapScript          struct instance_deadmines_InstanceMapScript : public InstanceScript          { -            instance_deadmines_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_deadmines_InstanceMapScript(Map* map) : InstanceScript(map) { }              uint64 FactoryDoorGUID;              uint64 IronCladDoorGUID; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp index 6599af7c2aa..04b9ebffbf7 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp @@ -60,7 +60,7 @@ public:      struct boss_curatorAI : public ScriptedAI      { -        boss_curatorAI(Creature* creature) : ScriptedAI(creature) {} +        boss_curatorAI(Creature* creature) : ScriptedAI(creature) { }          uint32 AddTimer;          uint32 HatefulBoltTimer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp index 0a9aee6269c..a04953cb3f5 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp @@ -52,7 +52,7 @@ public:      struct boss_maiden_of_virtueAI : public ScriptedAI      { -        boss_maiden_of_virtueAI(Creature* creature) : ScriptedAI(creature) {} +        boss_maiden_of_virtueAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Repentance_Timer;          uint32 Holyfire_Timer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp index 0b11d425e85..48a6712c4ae 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp @@ -126,7 +126,7 @@ public:      struct boss_midnightAI : public ScriptedAI      { -        boss_midnightAI(Creature* creature) : ScriptedAI(creature) {} +        boss_midnightAI(Creature* creature) : ScriptedAI(creature) { }          uint64 Attumen;          uint8 Phase; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp index 780f781f58d..ff85c53de7a 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp @@ -399,7 +399,7 @@ public:      struct boss_baroness_dorothea_millstipeAI : public boss_moroes_guestAI      {          //Shadow Priest -        boss_baroness_dorothea_millstipeAI(Creature* creature) : boss_moroes_guestAI(creature) {} +        boss_baroness_dorothea_millstipeAI(Creature* creature) : boss_moroes_guestAI(creature) { }          uint32 ManaBurn_Timer;          uint32 MindFlay_Timer; @@ -519,7 +519,7 @@ public:      struct boss_lady_catriona_von_indiAI : public boss_moroes_guestAI      {          //Holy Priest -        boss_lady_catriona_von_indiAI(Creature* creature) : boss_moroes_guestAI(creature) {} +        boss_lady_catriona_von_indiAI(Creature* creature) : boss_moroes_guestAI(creature) { }          uint32 DispelMagic_Timer;          uint32 GreaterHeal_Timer; @@ -663,7 +663,7 @@ public:      struct boss_lord_robin_darisAI : public boss_moroes_guestAI      {          //Arms Warr -        boss_lord_robin_darisAI(Creature* creature) : boss_moroes_guestAI(creature) {} +        boss_lord_robin_darisAI(Creature* creature) : boss_moroes_guestAI(creature) { }          uint32 Hamstring_Timer;          uint32 MortalStrike_Timer; @@ -719,7 +719,7 @@ public:      struct boss_lord_crispin_ferenceAI : public boss_moroes_guestAI      {          //Arms Warr -        boss_lord_crispin_ferenceAI(Creature* creature) : boss_moroes_guestAI(creature) {} +        boss_lord_crispin_ferenceAI(Creature* creature) : boss_moroes_guestAI(creature) { }          uint32 Disarm_Timer;          uint32 HeroicStrike_Timer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp index 8f292f2d008..762547e551c 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp @@ -110,7 +110,7 @@ public:      struct netherspite_infernalAI : public ScriptedAI      {          netherspite_infernalAI(Creature* creature) : ScriptedAI(creature), -            HellfireTimer(0), CleanupTimer(0), malchezaar(0), point(NULL) {} +            HellfireTimer(0), CleanupTimer(0), malchezaar(0), point(NULL) { }          uint32 HellfireTimer;          uint32 CleanupTimer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp index 7999524f853..66489fb8840 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp @@ -520,7 +520,7 @@ public:      struct water_elementalAI : public ScriptedAI      { -        water_elementalAI(Creature* creature) : ScriptedAI(creature) {} +        water_elementalAI(Creature* creature) : ScriptedAI(creature) { }          uint32 CastTimer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp index f348cf95a82..8be6b8b5739 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp @@ -148,7 +148,7 @@ public:      struct npc_demon_chainAI : public ScriptedAI      { -        npc_demon_chainAI(Creature* creature) : ScriptedAI(creature) {} +        npc_demon_chainAI(Creature* creature) : ScriptedAI(creature) { }          uint64 SacrificeGUID; @@ -220,7 +220,7 @@ public:      struct npc_fiendish_impAI : public ScriptedAI      { -        npc_fiendish_impAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fiendish_impAI(Creature* creature) : ScriptedAI(creature) { }          uint32 FireboltTimer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp b/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp index 29ae4890fdc..383cb9182c7 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp @@ -238,7 +238,7 @@ public:      struct npc_titoAI : public ScriptedAI      { -        npc_titoAI(Creature* creature) : ScriptedAI(creature) {} +        npc_titoAI(Creature* creature) : ScriptedAI(creature) { }          uint64 DorotheeGUID;          uint32 YipTimer; @@ -724,7 +724,7 @@ public:      struct npc_cycloneAI : public ScriptedAI      { -        npc_cycloneAI(Creature* creature) : ScriptedAI(creature) {} +        npc_cycloneAI(Creature* creature) : ScriptedAI(creature) { }          uint32 MoveTimer; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp index 82dc85861da..bf213e68f10 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp @@ -56,7 +56,7 @@ public:      struct instance_karazhan_InstanceMapScript : public InstanceScript      { -        instance_karazhan_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_karazhan_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER];          std::string strSaveData; diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp index 74d65480611..dc8f8bb185a 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp @@ -600,7 +600,7 @@ public:      struct npc_felkael_phoenix_eggAI : public ScriptedAI      { -        npc_felkael_phoenix_eggAI(Creature* creature) : ScriptedAI(creature) {} +        npc_felkael_phoenix_eggAI(Creature* creature) : ScriptedAI(creature) { }          uint32 HatchTimer; diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp index 03c06664edf..c8ab4a147ff 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp @@ -510,7 +510,7 @@ public:      struct boss_kagani_nightstrikeAI : public boss_priestess_lackey_commonAI      {          //Rogue -        boss_kagani_nightstrikeAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_kagani_nightstrikeAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Gouge_Timer;          uint32 Kick_Timer; @@ -614,7 +614,7 @@ public:      struct boss_ellris_duskhallowAI : public boss_priestess_lackey_commonAI      {          //Warlock -        boss_ellris_duskhallowAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_ellris_duskhallowAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Immolate_Timer;          uint32 Shadow_Bolt_Timer; @@ -705,7 +705,7 @@ public:      struct boss_eramas_brightblazeAI : public boss_priestess_lackey_commonAI      {          //Monk -        boss_eramas_brightblazeAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_eramas_brightblazeAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Knockdown_Timer;          uint32 Snap_Kick_Timer; @@ -766,7 +766,7 @@ public:      struct boss_yazzaiAI : public boss_priestess_lackey_commonAI      {          //Mage -        boss_yazzaiAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_yazzaiAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          bool HasIceBlocked; @@ -896,7 +896,7 @@ public:      struct boss_warlord_salarisAI : public boss_priestess_lackey_commonAI      {          //Warrior -        boss_warlord_salarisAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_warlord_salarisAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Intercept_Stun_Timer;          uint32 Disarm_Timer; @@ -1127,7 +1127,7 @@ public:      struct boss_apokoAI : public boss_priestess_lackey_commonAI      {          //Shaman -        boss_apokoAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_apokoAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Totem_Timer;          uint8  Totem_Amount; @@ -1225,7 +1225,7 @@ public:      struct boss_zelfanAI : public boss_priestess_lackey_commonAI      {          //Engineer -        boss_zelfanAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) {} +        boss_zelfanAI(Creature* creature) : boss_priestess_lackey_commonAI(creature) { }          uint32 Goblin_Dragon_Gun_Timer;          uint32 Rocket_Launch_Timer; diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp index 668f7ec58f4..a514f723900 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp @@ -332,7 +332,7 @@ public:      struct npc_fel_crystalAI : public ScriptedAI      { -        npc_fel_crystalAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fel_crystalAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp index 54323b5c133..f7abb46b9b7 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp @@ -62,7 +62,7 @@ public:      struct instance_magisters_terrace_InstanceMapScript : public InstanceScript      { -        instance_magisters_terrace_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_magisters_terrace_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 Encounter[MAX_ENCOUNTER];          uint32 DelrissaDeathCount; diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp index 6fcc050a55e..c9e530bce56 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp @@ -115,7 +115,7 @@ public:      struct npc_kalecgosAI : public ScriptedAI      { -        npc_kalecgosAI(Creature* creature) : ScriptedAI(creature) {} +        npc_kalecgosAI(Creature* creature) : ScriptedAI(creature) { }          uint32 m_uiTransformTimer; diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp index 7feb0e47926..65577d9e770 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp @@ -288,7 +288,7 @@ public:      struct npc_unworthy_initiate_anchorAI : public PassiveAI      { -        npc_unworthy_initiate_anchorAI(Creature* creature) : PassiveAI(creature), prisonerGUID(0) {} +        npc_unworthy_initiate_anchorAI(Creature* creature) : PassiveAI(creature), prisonerGUID(0) { }          uint64 prisonerGUID; @@ -615,7 +615,7 @@ public:      struct npc_salanar_the_horsemanAI : public ScriptedAI      { -        npc_salanar_the_horsemanAI(Creature* creature) : ScriptedAI(creature) {} +        npc_salanar_the_horsemanAI(Creature* creature) : ScriptedAI(creature) { }          void SpellHit(Unit* caster, const SpellInfo* spell) OVERRIDE          { @@ -687,7 +687,7 @@ public:      struct npc_ros_dark_riderAI : public ScriptedAI      { -        npc_ros_dark_riderAI(Creature* creature) : ScriptedAI(creature) {} +        npc_ros_dark_riderAI(Creature* creature) : ScriptedAI(creature) { }          void EnterCombat(Unit* /*who*/) OVERRIDE          { @@ -742,7 +742,7 @@ public:      struct npc_dkc1_gothikAI : public ScriptedAI      { -        npc_dkc1_gothikAI(Creature* creature) : ScriptedAI(creature) {} +        npc_dkc1_gothikAI(Creature* creature) : ScriptedAI(creature) { }          void MoveInLineOfSight(Unit* who) OVERRIDE diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp index ba6f0f23656..20a7ccedb17 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp @@ -51,7 +51,7 @@ public:      struct npc_crusade_persuadedAI : public ScriptedAI      { -        npc_crusade_persuadedAI(Creature* creature) : ScriptedAI(creature) {} +        npc_crusade_persuadedAI(Creature* creature) : ScriptedAI(creature) { }          uint32 speechTimer;          uint32 speechCounter; @@ -375,7 +375,7 @@ public:      struct npc_scarlet_courierAI : public ScriptedAI      { -        npc_scarlet_courierAI(Creature* creature) : ScriptedAI(creature) {} +        npc_scarlet_courierAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiStage;          uint32 uiStage_timer; @@ -467,7 +467,7 @@ public:      struct npc_high_inquisitor_valrothAI : public ScriptedAI      { -        npc_high_inquisitor_valrothAI(Creature* creature) : ScriptedAI(creature) {} +        npc_high_inquisitor_valrothAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiRenew_timer;          uint32 uiInquisitor_Penance_timer; @@ -603,7 +603,7 @@ public:      struct npc_a_special_surpriseAI : public ScriptedAI      { -        npc_a_special_surpriseAI(Creature* creature) : ScriptedAI(creature) {} +        npc_a_special_surpriseAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ExecuteSpeech_Timer;          uint32 ExecuteSpeech_Counter; diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp index ab1367ed684..52c791a2fcb 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp @@ -1679,7 +1679,7 @@ public:      {          npc_the_lich_king_tirion_dawnAI(Creature* creature) : ScriptedAI(creature) { Reset(); }          void Reset() OVERRIDE {} -        void AttackStart(Unit* /*who*/) {} // very sample, just don't make them aggreesive OVERRIDE +        void AttackStart(Unit* /*who*/) { } // very sample, just don't make them aggreesive OVERRIDE          void UpdateAI(uint32 /*diff*/) OVERRIDE {}          void JustDied(Unit* /*killer*/) OVERRIDE {}      }; diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp index aa4be5d2523..2bb187692fa 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp @@ -46,7 +46,7 @@ public:      struct npc_valkyr_battle_maidenAI : public PassiveAI      { -        npc_valkyr_battle_maidenAI(Creature* creature) : PassiveAI(creature) {} +        npc_valkyr_battle_maidenAI(Creature* creature) : PassiveAI(creature) { }          uint32 FlyBackTimer;          float x, y, z; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp index 4cf6c069648..694fdf9d84e 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp @@ -53,7 +53,7 @@ public:      struct boss_arcanist_doanAI : public ScriptedAI      { -        boss_arcanist_doanAI(Creature* creature) : ScriptedAI(creature) {} +        boss_arcanist_doanAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Polymorph_Timer;          uint32 AoESilence_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp index a88ff8b2977..83269f43f25 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp @@ -45,7 +45,7 @@ public:      struct boss_azshir_the_sleeplessAI : public ScriptedAI      { -        boss_azshir_the_sleeplessAI(Creature* creature) : ScriptedAI(creature) {} +        boss_azshir_the_sleeplessAI(Creature* creature) : ScriptedAI(creature) { }          uint32 SoulSiphon_Timer;          uint32 CallOftheGrave_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp index f10ac0b5ba2..b3375d9448f 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp @@ -53,7 +53,7 @@ public:      struct boss_bloodmage_thalnosAI : public ScriptedAI      { -        boss_bloodmage_thalnosAI(Creature* creature) : ScriptedAI(creature) {} +        boss_bloodmage_thalnosAI(Creature* creature) : ScriptedAI(creature) { }          bool HpYell;          uint32 FlameShock_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp index 1b5d0a80eda..10c208aa1e3 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp @@ -233,7 +233,7 @@ public:      struct npc_headAI : public ScriptedAI      { -        npc_headAI(Creature* creature) : ScriptedAI(creature) {} +        npc_headAI(Creature* creature) : ScriptedAI(creature) { }          uint64 bodyGUID; @@ -796,7 +796,7 @@ public:      struct npc_pulsing_pumpkinAI : public ScriptedAI      { -        npc_pulsing_pumpkinAI(Creature* creature) : ScriptedAI(creature) {} +        npc_pulsing_pumpkinAI(Creature* creature) : ScriptedAI(creature) { }          bool sprouted;          uint64 debuffGUID; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp index 3c662fae9f8..45ae86b252b 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp @@ -62,7 +62,7 @@ public:      struct boss_herodAI : public ScriptedAI      { -        boss_herodAI(Creature* creature) : ScriptedAI(creature) {} +        boss_herodAI(Creature* creature) : ScriptedAI(creature) { }          bool Enrage; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp index 38fb663a073..46680730f7e 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp @@ -48,7 +48,7 @@ public:      struct boss_high_inquisitor_fairbanksAI : public ScriptedAI      { -        boss_high_inquisitor_fairbanksAI(Creature* creature) : ScriptedAI(creature) {} +        boss_high_inquisitor_fairbanksAI(Creature* creature) : ScriptedAI(creature) { }          uint32 CurseOfBlood_Timer;          uint32 DispelMagic_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp index 10d60eb15cd..4a0d8ff4796 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp @@ -49,7 +49,7 @@ public:      struct boss_houndmaster_lokseyAI : public ScriptedAI      { -        boss_houndmaster_lokseyAI(Creature* creature) : ScriptedAI(creature) {} +        boss_houndmaster_lokseyAI(Creature* creature) : ScriptedAI(creature) { }          uint32 BloodLust_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp index fcd0975fbc0..8e267319054 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp @@ -46,7 +46,7 @@ public:      struct boss_scornAI : public ScriptedAI      { -        boss_scornAI(Creature* creature) : ScriptedAI(creature) {} +        boss_scornAI(Creature* creature) : ScriptedAI(creature) { }          uint32 LichSlap_Timer;          uint32 FrostboltVolley_Timer; diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp index 05664a946ed..b91a54e5afc 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp @@ -49,7 +49,7 @@ public:      struct instance_scarlet_monastery_InstanceMapScript : public InstanceScript      { -        instance_scarlet_monastery_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_scarlet_monastery_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint64 PumpkinShrineGUID;          uint64 HorsemanGUID; diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp index cb6da60bf28..2277c53ae6b 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp @@ -54,7 +54,7 @@ class boss_darkmaster_gandling : public CreatureScript          struct boss_darkmaster_gandlingAI : public BossAI          { -            boss_darkmaster_gandlingAI(Creature* creature) : BossAI(creature, DATA_DARKMASTERGANDLING) {} +            boss_darkmaster_gandlingAI(Creature* creature) : BossAI(creature, DATA_DARKMASTERGANDLING) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp index 8ca8f04f33a..108dcc92f22 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp @@ -38,7 +38,7 @@ public:      struct boss_death_knight_darkreaverAI : public ScriptedAI      { -        boss_death_knight_darkreaverAI(Creature* creature) : ScriptedAI(creature) {} +        boss_death_knight_darkreaverAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp index 3dae50ebf44..bcf5e82bc66 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp @@ -51,7 +51,7 @@ class boss_doctor_theolen_krastinov : public CreatureScript          struct boss_theolenkrastinovAI : public BossAI          { -            boss_theolenkrastinovAI(Creature* creature) : BossAI(creature, DATA_DOCTORTHEOLENKRASTINOV) {} +            boss_theolenkrastinovAI(Creature* creature) : BossAI(creature, DATA_DOCTORTHEOLENKRASTINOV) { }              void EnterCombat(Unit* /*who*/) OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp index 5da1bf14c7d..c3255ba9c65 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp @@ -48,7 +48,7 @@ class boss_illucia_barov : public CreatureScript          struct boss_illuciabarovAI : public BossAI          { -            boss_illuciabarovAI(Creature* creature) : BossAI(creature, DATA_LADYILLUCIABAROV) {} +            boss_illuciabarovAI(Creature* creature) : BossAI(creature, DATA_LADYILLUCIABAROV) { }              void EnterCombat(Unit* /*who*/) OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp index c3bd97c9a0b..88f95df69c4 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp @@ -50,7 +50,7 @@ class boss_instructor_malicia : public CreatureScript          struct boss_instructormaliciaAI : public BossAI          { -            boss_instructormaliciaAI(Creature* creature) : BossAI(creature, DATA_INSTRUCTORMALICIA) {} +            boss_instructormaliciaAI(Creature* creature) : BossAI(creature, DATA_INSTRUCTORMALICIA) { }              uint32 FlashCounter;              uint32 TouchCounter; diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp index ab259680c07..2663146317a 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp @@ -47,7 +47,7 @@ public:      struct boss_jandicebarovAI : public ScriptedAI      { -        boss_jandicebarovAI(Creature* creature) : ScriptedAI(creature) {} +        boss_jandicebarovAI(Creature* creature) : ScriptedAI(creature) { }          uint32 CurseOfBlood_Timer;          uint32 Illusion_Timer; @@ -169,7 +169,7 @@ public:      struct npc_illusionofjandicebarovAI : public ScriptedAI      { -        npc_illusionofjandicebarovAI(Creature* creature) : ScriptedAI(creature) {} +        npc_illusionofjandicebarovAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Cleave_Timer; diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp index 0ba0ab4cb92..57cfeb7dc33 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp @@ -44,7 +44,7 @@ public:      struct boss_kormokAI : public ScriptedAI      { -        boss_kormokAI(Creature* creature) : ScriptedAI(creature) {} +        boss_kormokAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ShadowVolley_Timer;          uint32 BoneShield_Timer; diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp index 26028590f5c..e06c0d6bfbb 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp @@ -44,7 +44,7 @@ class boss_lord_alexei_barov : public CreatureScript          struct boss_lordalexeibarovAI : public BossAI          { -            boss_lordalexeibarovAI(Creature* creature) : BossAI(creature, DATA_LORDALEXEIBAROV) {} +            boss_lordalexeibarovAI(Creature* creature) : BossAI(creature, DATA_LORDALEXEIBAROV) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp index bc6646be633..f41f456d24a 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp @@ -48,7 +48,7 @@ class boss_lorekeeper_polkelt : public CreatureScript          struct boss_lorekeeperpolkeltAI : public BossAI          { -            boss_lorekeeperpolkeltAI(Creature* creature) : BossAI(creature, DATA_LOREKEEPERPOLKELT) {} +            boss_lorekeeperpolkeltAI(Creature* creature) : BossAI(creature, DATA_LOREKEEPERPOLKELT) { }              void EnterCombat(Unit* /*who*/) OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp index 62922289821..e468c435c8d 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp @@ -48,7 +48,7 @@ public:      struct boss_rasfrostAI : public ScriptedAI      { -        boss_rasfrostAI(Creature* creature) : ScriptedAI(creature) {} +        boss_rasfrostAI(Creature* creature) : ScriptedAI(creature) { }          uint32 IceArmor_Timer;          uint32 Frostbolt_Timer; diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp index 1e2c38fc487..9af473d4b4c 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp @@ -48,7 +48,7 @@ class boss_the_ravenian : public CreatureScript          struct boss_theravenianAI : public BossAI          { -            boss_theravenianAI(Creature* creature) : BossAI(creature, DATA_THERAVENIAN) {} +            boss_theravenianAI(Creature* creature) : BossAI(creature, DATA_THERAVENIAN) { }              void EnterCombat(Unit* /*who*/) OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp index e426fb4ec11..395581b3562 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp @@ -51,7 +51,7 @@ public:      struct boss_vectusAI : public ScriptedAI      { -        boss_vectusAI(Creature* creature) : ScriptedAI(creature) {} +        boss_vectusAI(Creature* creature) : ScriptedAI(creature) { }          uint32 m_uiFireShield_Timer;          uint32 m_uiBlastWave_Timer; diff --git a/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp b/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp index fde5bffd07a..8c022c98ba7 100644 --- a/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp +++ b/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp @@ -78,7 +78,7 @@ public:      struct instance_shadowfang_keep_InstanceMapScript : public InstanceScript      { -        instance_shadowfang_keep_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_shadowfang_keep_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER];          std::string str_data; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp index 319afb3deb2..42714c3f12e 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp @@ -92,7 +92,7 @@ public:      struct boss_cannon_master_willeyAI : public ScriptedAI      { -        boss_cannon_master_willeyAI(Creature* creature) : ScriptedAI(creature) {} +        boss_cannon_master_willeyAI(Creature* creature) : ScriptedAI(creature) { }          uint32 KnockAway_Timer;          uint32 Pummel_Timer; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp index 21320ed738f..5847f7b132b 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp @@ -81,7 +81,7 @@ public:      struct boss_dathrohan_balnazzarAI : public ScriptedAI      { -        boss_dathrohan_balnazzarAI(Creature* creature) : ScriptedAI(creature) {} +        boss_dathrohan_balnazzarAI(Creature* creature) : ScriptedAI(creature) { }          uint32 m_uiCrusadersHammer_Timer;          uint32 m_uiCrusaderStrike_Timer; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp index 1c5f0c72153..150d134da07 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp @@ -53,7 +53,7 @@ public:      struct boss_magistrate_barthilasAI : public ScriptedAI      { -        boss_magistrate_barthilasAI(Creature* creature) : ScriptedAI(creature) {} +        boss_magistrate_barthilasAI(Creature* creature) : ScriptedAI(creature) { }          uint32 DrainingBlow_Timer;          uint32 CrowdPummel_Timer; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp index 5f169ece0d5..98f4d9f8e4d 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp @@ -59,7 +59,7 @@ class boss_postmaster_malown : public CreatureScript          struct boss_postmaster_malownAI : public BossAI          { -            boss_postmaster_malownAI(Creature* creature) : BossAI(creature, TYPE_MALOWN) {} +            boss_postmaster_malownAI(Creature* creature) : BossAI(creature, TYPE_MALOWN) { }              void Reset() OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp index 020b14f4823..6d4ba8a1631 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp @@ -48,7 +48,7 @@ public:      struct boss_timmy_the_cruelAI : public ScriptedAI      { -        boss_timmy_the_cruelAI(Creature* creature) : ScriptedAI(creature) {} +        boss_timmy_the_cruelAI(Creature* creature) : ScriptedAI(creature) { }          uint32 RavenousClaw_Timer;          bool HasYelled; diff --git a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp index ff2bc1cb15c..34b79473fb7 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp @@ -100,7 +100,7 @@ public:      struct npc_freed_soulAI : public ScriptedAI      { -        npc_freed_soulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_freed_soulAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -142,7 +142,7 @@ public:      struct npc_restless_soulAI : public ScriptedAI      { -        npc_restless_soulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_restless_soulAI(Creature* creature) : ScriptedAI(creature) { }          uint64 Tagger;          uint32 Die_Timer; @@ -224,7 +224,7 @@ public:      struct npc_spectral_ghostly_citizenAI : public ScriptedAI      { -        npc_spectral_ghostly_citizenAI(Creature* creature) : ScriptedAI(creature) {} +        npc_spectral_ghostly_citizenAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Die_Timer;          bool Tagged; diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp index d402eccedd4..a84e89d61a3 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp @@ -675,7 +675,7 @@ public:      struct npc_shadow_imageAI : public ScriptedAI      { -        npc_shadow_imageAI(Creature* creature) : ScriptedAI(creature) {} +        npc_shadow_imageAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ShadowfuryTimer;          uint32 KillTimer; diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp index 855ed46e5cf..2730d308828 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp @@ -1055,7 +1055,7 @@ public:      struct npc_volatile_felfire_fiendAI : public ScriptedAI      { -        npc_volatile_felfire_fiendAI(Creature* creature) : ScriptedAI(creature) {} +        npc_volatile_felfire_fiendAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiExplodeTimer; @@ -1256,7 +1256,7 @@ public:      struct npc_sinster_reflectionAI : public ScriptedAI      { -        npc_sinster_reflectionAI(Creature* creature) : ScriptedAI(creature) {} +        npc_sinster_reflectionAI(Creature* creature) : ScriptedAI(creature) { }          uint8 victimClass;          uint32 uiTimer[3]; diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp index c3d00ddba53..1753cc8ca10 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp @@ -464,7 +464,7 @@ public:      struct npc_dark_fiendAI : public ScriptedAI      { -        npc_dark_fiendAI(Creature* creature) : ScriptedAI(creature) {} +        npc_dark_fiendAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WaitTimer;          bool InAction; diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp index f1febf07bb7..8a7944464a1 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp @@ -51,7 +51,7 @@ public:      struct instance_sunwell_plateau_InstanceMapScript : public InstanceScript      { -        instance_sunwell_plateau_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_sunwell_plateau_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER]; diff --git a/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp b/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp index 9550ac13208..50d4f0d1578 100644 --- a/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp +++ b/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp @@ -37,7 +37,7 @@ public:      struct instance_the_stockade_InstanceMapScript : public InstanceScript      { -        instance_the_stockade_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_the_stockade_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp b/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp index 1a41becfad5..830942ae2c3 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp @@ -45,7 +45,7 @@ class boss_ironaya : public CreatureScript          struct boss_ironayaAI : public ScriptedAI          { -            boss_ironayaAI(Creature* creature) : ScriptedAI(creature) {} +            boss_ironayaAI(Creature* creature) : ScriptedAI(creature) { }              uint32 uiArcingTimer;              bool bHasCastedWstomp; diff --git a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp index 7d17a339d5f..f221355b1c8 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp @@ -41,11 +41,11 @@ enum Events  class instance_uldaman : public InstanceMapScript  {      public: -        instance_uldaman() : InstanceMapScript("instance_uldaman", 70) {} +        instance_uldaman() : InstanceMapScript("instance_uldaman", 70) { }          struct instance_uldaman_InstanceMapScript : public InstanceScript          { -            instance_uldaman_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_uldaman_InstanceMapScript(Map* map) : InstanceScript(map) { }              void Initialize() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp index 4dcb6af2392..1dfb48f746f 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp @@ -54,7 +54,7 @@ class npc_jadespine_basilisk : public CreatureScript          struct npc_jadespine_basiliskAI : public ScriptedAI          { -            npc_jadespine_basiliskAI(Creature* creature) : ScriptedAI(creature) {} +            npc_jadespine_basiliskAI(Creature* creature) : ScriptedAI(creature) { }              uint32 uiCslumberTimer; diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp index 8bfe45a7f17..a174b4833b4 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp @@ -359,7 +359,7 @@ class npc_halazzi_lynx : public CreatureScript          struct npc_halazzi_lynxAI : public ScriptedAI          { -            npc_halazzi_lynxAI(Creature* creature) : ScriptedAI(creature) {} +            npc_halazzi_lynxAI(Creature* creature) : ScriptedAI(creature) { }              uint32 FrenzyTimer;              uint32 shredder_timer; diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp index 8a13e072be8..17ad3da4f7e 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp @@ -526,7 +526,7 @@ class boss_thurg : public CreatureScript          struct boss_thurgAI : public boss_hexlord_addAI          { -            boss_thurgAI(Creature* creature) : boss_hexlord_addAI(creature) {} +            boss_thurgAI(Creature* creature) : boss_hexlord_addAI(creature) { }              uint32 bloodlust_timer;              uint32 cleave_timer; @@ -583,7 +583,7 @@ class boss_alyson_antille : public CreatureScript          struct boss_alyson_antilleAI : public boss_hexlord_addAI          {              //Holy Priest -            boss_alyson_antilleAI(Creature* creature) : boss_hexlord_addAI(creature) {} +            boss_alyson_antilleAI(Creature* creature) : boss_hexlord_addAI(creature) { }              uint32 flashheal_timer;              uint32 dispelmagic_timer; @@ -814,7 +814,7 @@ class boss_slither : public CreatureScript          struct boss_slitherAI : public boss_hexlord_addAI          { -            boss_slitherAI(Creature* creature) : boss_hexlord_addAI(creature) {} +            boss_slitherAI(Creature* creature) : boss_hexlord_addAI(creature) { }              uint32 venomspit_timer; @@ -872,7 +872,7 @@ class boss_fenstalker : public CreatureScript          struct boss_fenstalkerAI : public boss_hexlord_addAI          { -            boss_fenstalkerAI(Creature* creature) : boss_hexlord_addAI(creature) {} +            boss_fenstalkerAI(Creature* creature) : boss_hexlord_addAI(creature) { }              uint32 volatileinf_timer; @@ -915,7 +915,7 @@ class boss_koragg : public CreatureScript          struct boss_koraggAI : public boss_hexlord_addAI          { -            boss_koraggAI(Creature* creature) : boss_hexlord_addAI(creature) {} +            boss_koraggAI(Creature* creature) : boss_hexlord_addAI(creature) { }              uint32 coldstare_timer;              uint32 mightyblow_timer; diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp index 329034a7682..d4d845babdf 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp @@ -678,7 +678,7 @@ class npc_janalai_hatchling : public CreatureScript  class npc_janalai_egg : public CreatureScript  {  public: -    npc_janalai_egg(): CreatureScript("npc_janalai_egg") {} +    npc_janalai_egg(): CreatureScript("npc_janalai_egg") { }      CreatureAI* GetAI(Creature* creature) const OVERRIDE      { diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_zuljin.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_zuljin.cpp index 11b18e9e5cc..1413a81a825 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_zuljin.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_zuljin.cpp @@ -570,7 +570,7 @@ class npc_zuljin_vortex : public CreatureScript          struct npc_zuljin_vortexAI : public ScriptedAI          { -            npc_zuljin_vortexAI(Creature* creature) : ScriptedAI(creature) {} +            npc_zuljin_vortexAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp b/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp index 5803f1b981c..4d567dbca32 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp @@ -66,7 +66,7 @@ class instance_zulaman : public InstanceMapScript          struct instance_zulaman_InstanceMapScript : public InstanceScript          { -            instance_zulaman_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_zulaman_InstanceMapScript(Map* map) : InstanceScript(map) { }              uint64 HarkorsSatchelGUID;              uint64 TanzarsTrunkGUID; diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_arlokk.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_arlokk.cpp index 2c48d18d112..7fe80c12fd2 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_arlokk.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_arlokk.cpp @@ -88,7 +88,7 @@ Position const PosMoveOnSpawn[1] =  class boss_arlokk : public CreatureScript  { -    public: boss_arlokk() : CreatureScript("boss_arlokk") {} +    public: boss_arlokk() : CreatureScript("boss_arlokk") { }          struct boss_arlokkAI : public BossAI          { @@ -338,7 +338,7 @@ Position const PosProwlerCenter[1] =  class npc_zulian_prowler : public CreatureScript  { -    public: npc_zulian_prowler() : CreatureScript("npc_zulian_prowler") {} +    public: npc_zulian_prowler() : CreatureScript("npc_zulian_prowler") { }          struct npc_zulian_prowlerAI : public ScriptedAI          { @@ -433,7 +433,7 @@ Position const PosSummonArlokk[1] =  class go_gong_of_bethekk : public GameObjectScript  { -    public: go_gong_of_bethekk() : GameObjectScript("go_gong_of_bethekk") {} +    public: go_gong_of_bethekk() : GameObjectScript("go_gong_of_bethekk") { }          bool OnGossipHello(Player* /*player*/, GameObject* go) OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_gahzranka.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_gahzranka.cpp index a6ed3b72146..017730f1186 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_gahzranka.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_gahzranka.cpp @@ -43,11 +43,11 @@ enum Events  class boss_gahzranka : public CreatureScript // gahzranka  { -    public: boss_gahzranka() : CreatureScript("boss_gahzranka") {} +    public: boss_gahzranka() : CreatureScript("boss_gahzranka") { }          struct boss_gahzrankaAI : public BossAI          { -            boss_gahzrankaAI(Creature* creature) : BossAI(creature, DATA_GAHZRANKA) {} +            boss_gahzrankaAI(Creature* creature) : BossAI(creature, DATA_GAHZRANKA) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp index 3c472b1e6d5..6d21e6015fe 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp @@ -41,11 +41,11 @@ enum Events  class boss_grilek : public CreatureScript // grilek  { -    public: boss_grilek() : CreatureScript("boss_grilek") {} +    public: boss_grilek() : CreatureScript("boss_grilek") { }          struct boss_grilekAI : public BossAI          { -            boss_grilekAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) {} +            boss_grilekAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hakkar.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hakkar.cpp index 7603e14ea2a..b25daf85a7c 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hakkar.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hakkar.cpp @@ -66,11 +66,11 @@ enum Events  class boss_hakkar : public CreatureScript  { -    public: boss_hakkar() : CreatureScript("boss_hakkar") {} +    public: boss_hakkar() : CreatureScript("boss_hakkar") { }          struct boss_hakkarAI : public BossAI          { -            boss_hakkarAI(Creature* creature) : BossAI(creature, DATA_HAKKAR) {} +            boss_hakkarAI(Creature* creature) : BossAI(creature, DATA_HAKKAR) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp index 27159a700cb..f988a43f728 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp @@ -42,11 +42,11 @@ enum Events  class boss_hazzarah : public CreatureScript  { -    public: boss_hazzarah() : CreatureScript("boss_hazzarah") {} +    public: boss_hazzarah() : CreatureScript("boss_hazzarah") { }          struct boss_hazzarahAI : public BossAI          { -            boss_hazzarahAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) {} +            boss_hazzarahAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jeklik.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jeklik.cpp index 2a04a03938d..1c10a1b9966 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jeklik.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jeklik.cpp @@ -50,11 +50,11 @@ enum Spells  class boss_jeklik : public CreatureScript //jeklik  { -    public: boss_jeklik() : CreatureScript("boss_jeklik") {} +    public: boss_jeklik() : CreatureScript("boss_jeklik") { }          struct boss_jeklikAI : public BossAI          { -            boss_jeklikAI(Creature* creature) : BossAI(creature, DATA_JEKLIK) {} +            boss_jeklikAI(Creature* creature) : BossAI(creature, DATA_JEKLIK) { }              uint32 Charge_Timer;              uint32 SonicBurst_Timer; diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo.cpp index 0bbfefc69fb..100562acda6 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo.cpp @@ -59,11 +59,11 @@ Position const TeleportLoc = {-11583.7783f, -1249.4278f, 77.5471f, 4.745f};  class boss_jindo : public CreatureScript  { -    public: boss_jindo() : CreatureScript("boss_jindo") {} +    public: boss_jindo() : CreatureScript("boss_jindo") { }          struct boss_jindoAI : public BossAI          { -            boss_jindoAI(Creature* creature) : BossAI(creature, DATA_JINDO) {} +            boss_jindoAI(Creature* creature) : BossAI(creature, DATA_JINDO) { }              void Reset() OVERRIDE              { @@ -248,7 +248,7 @@ class npc_shade_of_jindo : public CreatureScript          struct npc_shade_of_jindoAI : public ScriptedAI          { -            npc_shade_of_jindoAI(Creature* creature) : ScriptedAI(creature) {} +            npc_shade_of_jindoAI(Creature* creature) : ScriptedAI(creature) { }              uint32 ShadowShock_Timer; diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp index ac65842fa44..0a52425d0a9 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp @@ -106,7 +106,7 @@ Position const PosMandokir[2] =  class boss_mandokir : public CreatureScript  { -    public: boss_mandokir() : CreatureScript("boss_mandokir") {} +    public: boss_mandokir() : CreatureScript("boss_mandokir") { }          struct boss_mandokirAI : public BossAI          { @@ -293,7 +293,7 @@ enum OhganSpells  class npc_ohgan : public CreatureScript  { -    public: npc_ohgan() : CreatureScript("npc_ohgan") {} +    public: npc_ohgan() : CreatureScript("npc_ohgan") { }          struct npc_ohganAI : public ScriptedAI          { @@ -345,7 +345,7 @@ enum VilebranchSpells  class npc_vilebranch_speaker : public CreatureScript  { -    public: npc_vilebranch_speaker() : CreatureScript("npc_vilebranch_speaker") {} +    public: npc_vilebranch_speaker() : CreatureScript("npc_vilebranch_speaker") { }          struct npc_vilebranch_speakerAI : public ScriptedAI          { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_marli.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_marli.cpp index c372cb0324d..3edbe6ff721 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_marli.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_marli.cpp @@ -71,11 +71,11 @@ enum ModelId  class boss_marli : public CreatureScript  { -    public: boss_marli() : CreatureScript("boss_marli") {} +    public: boss_marli() : CreatureScript("boss_marli") { }          struct boss_marliAI : public BossAI          { -            boss_marliAI(Creature* creature) : BossAI(creature, DATA_MARLI) {} +            boss_marliAI(Creature* creature) : BossAI(creature, DATA_MARLI) { }              void Reset() OVERRIDE              { @@ -219,11 +219,11 @@ class boss_marli : public CreatureScript  // Spawn of Marli  class npc_spawn_of_marli : public CreatureScript  { -    public: npc_spawn_of_marli() : CreatureScript("npc_spawn_of_marli") {} +    public: npc_spawn_of_marli() : CreatureScript("npc_spawn_of_marli") { }          struct npc_spawn_of_marliAI : public ScriptedAI          { -            npc_spawn_of_marliAI(Creature* creature) : ScriptedAI(creature) {} +            npc_spawn_of_marliAI(Creature* creature) : ScriptedAI(creature) { }              uint32 LevelUp_Timer; diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp index 4d9d446d823..581f1de5013 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp @@ -40,11 +40,11 @@ enum Misc  class boss_renataki : public CreatureScript  { -    public: boss_renataki() : CreatureScript("boss_renataki") {} +    public: boss_renataki() : CreatureScript("boss_renataki") { }          struct boss_renatakiAI : public BossAI          { -            boss_renatakiAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) {} +            boss_renatakiAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) { }              uint32 Invisible_Timer;              uint32 Ambush_Timer; diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_thekal.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_thekal.cpp index 6a945c545a0..d20414705cf 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_thekal.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_thekal.cpp @@ -78,11 +78,11 @@ enum Phases  class boss_thekal : public CreatureScript  { -    public: boss_thekal() : CreatureScript("boss_thekal") {} +    public: boss_thekal() : CreatureScript("boss_thekal") { }          struct boss_thekalAI : public BossAI          { -            boss_thekalAI(Creature* creature) : BossAI(creature, DATA_THEKAL) {} +            boss_thekalAI(Creature* creature) : BossAI(creature, DATA_THEKAL) { }              bool Enraged;              bool WasDead; @@ -258,7 +258,7 @@ class boss_thekal : public CreatureScript  //Zealot Lor'Khan  class npc_zealot_lorkhan : public CreatureScript  { -    public: npc_zealot_lorkhan() : CreatureScript("npc_zealot_lorkhan") {} +    public: npc_zealot_lorkhan() : CreatureScript("npc_zealot_lorkhan") { }          struct npc_zealot_lorkhanAI : public ScriptedAI          { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp index f57503fcac0..0d3548ae253 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp @@ -85,11 +85,11 @@ enum NPCs  class boss_venoxis : public CreatureScript  { -    public: boss_venoxis() : CreatureScript("boss_venoxis") {} +    public: boss_venoxis() : CreatureScript("boss_venoxis") { }          struct boss_venoxisAI : public BossAI          { -            boss_venoxisAI(Creature* creature) : BossAI(creature, DATA_VENOXIS) {} +            boss_venoxisAI(Creature* creature) : BossAI(creature, DATA_VENOXIS) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp index 0e492f57588..8778a306230 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp @@ -41,11 +41,11 @@ enum Events  class boss_wushoolay : public CreatureScript  { -    public: boss_wushoolay() : CreatureScript("boss_wushoolay") {} +    public: boss_wushoolay() : CreatureScript("boss_wushoolay") { }          struct boss_wushoolayAI : public BossAI          { -            boss_wushoolayAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) {} +            boss_wushoolayAI(Creature* creature) : BossAI(creature, DATA_EDGE_OF_MADNESS) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp index 797695a70f3..e9a2172040a 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp @@ -29,7 +29,7 @@ EndScriptData */  class instance_zulgurub : public InstanceMapScript  { -    public: instance_zulgurub(): InstanceMapScript(ZGScriptName, 309) {} +    public: instance_zulgurub(): InstanceMapScript(ZGScriptName, 309) { }          struct instance_zulgurub_InstanceMapScript : public InstanceScript          { diff --git a/src/server/scripts/EasternKingdoms/boss_kruul.cpp b/src/server/scripts/EasternKingdoms/boss_kruul.cpp index 02fce8f3cf2..5ac197aa7db 100644 --- a/src/server/scripts/EasternKingdoms/boss_kruul.cpp +++ b/src/server/scripts/EasternKingdoms/boss_kruul.cpp @@ -49,7 +49,7 @@ public:      struct boss_kruulAI : public ScriptedAI      { -        boss_kruulAI(Creature* creature) : ScriptedAI(creature) {} +        boss_kruulAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ShadowVolley_Timer;          uint32 Cleave_Timer; diff --git a/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp b/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp index 55d3cc927a5..5c760a36e70 100644 --- a/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp @@ -68,7 +68,7 @@ class npc_professor_phizzlethorpe : public CreatureScript          struct npc_professor_phizzlethorpeAI : public npc_escortAI          { -            npc_professor_phizzlethorpeAI(Creature* creature) : npc_escortAI(creature) {} +            npc_professor_phizzlethorpeAI(Creature* creature) : npc_escortAI(creature) { }              void WaypointReached(uint32 waypointId) OVERRIDE              { diff --git a/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp b/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp index 94f227a3de0..0acce881c23 100644 --- a/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp +++ b/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp @@ -130,7 +130,7 @@ public:      struct npc_ragged_johnAI : public ScriptedAI      { -        npc_ragged_johnAI(Creature* creature) : ScriptedAI(creature) {} +        npc_ragged_johnAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/zone_duskwood.cpp b/src/server/scripts/EasternKingdoms/zone_duskwood.cpp index 23b9d99935b..8f7865dbf71 100644 --- a/src/server/scripts/EasternKingdoms/zone_duskwood.cpp +++ b/src/server/scripts/EasternKingdoms/zone_duskwood.cpp @@ -87,7 +87,7 @@ public:      struct boss_twilight_corrupterAI : public ScriptedAI      { -        boss_twilight_corrupterAI(Creature* creature) : ScriptedAI(creature) {} +        boss_twilight_corrupterAI(Creature* creature) : ScriptedAI(creature) { }          uint32 SoulCorruption_Timer;          uint32 CreatureOfNightmare_Timer; diff --git a/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp b/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp index ea8f3cd056a..01305d923b1 100644 --- a/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp @@ -121,7 +121,7 @@ public:      struct npc_darrowshire_spiritAI : public ScriptedAI      { -        npc_darrowshire_spiritAI(Creature* creature) : ScriptedAI(creature) {} +        npc_darrowshire_spiritAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/zone_eversong_woods.cpp b/src/server/scripts/EasternKingdoms/zone_eversong_woods.cpp index 5381b19ebf3..1f9384c1db2 100644 --- a/src/server/scripts/EasternKingdoms/zone_eversong_woods.cpp +++ b/src/server/scripts/EasternKingdoms/zone_eversong_woods.cpp @@ -66,7 +66,7 @@ public:      struct npc_apprentice_mirvedaAI : public ScriptedAI      { -        npc_apprentice_mirvedaAI(Creature* creature) : ScriptedAI(creature), Summons(me) {} +        npc_apprentice_mirvedaAI(Creature* creature) : ScriptedAI(creature), Summons(me) { }          uint32 KillCount;          uint64 PlayerGUID; diff --git a/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp b/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp index ebbf8ef9f5b..1b181581f5e 100644 --- a/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp @@ -140,7 +140,7 @@ public:      struct npc_ranger_lilathaAI : public npc_escortAI      { -        npc_ranger_lilathaAI(Creature* creature) : npc_escortAI(creature) {} +        npc_ranger_lilathaAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp b/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp index 32a7feffa72..9ae00b9157e 100644 --- a/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp +++ b/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp @@ -57,7 +57,7 @@ public:      struct npc_converted_sentryAI : public ScriptedAI      { -        npc_converted_sentryAI(Creature* creature) : ScriptedAI(creature) {} +        npc_converted_sentryAI(Creature* creature) : ScriptedAI(creature) { }          bool Credit;          uint32 Timer; @@ -111,7 +111,7 @@ public:      struct npc_greengill_slaveAI : public ScriptedAI      { -        npc_greengill_slaveAI(Creature* creature) : ScriptedAI(creature) {} +        npc_greengill_slaveAI(Creature* creature) : ScriptedAI(creature) { }          void EnterCombat(Unit* /*who*/) OVERRIDE { } diff --git a/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp b/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp index 6609f8a9d46..604d51f9d8f 100644 --- a/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp +++ b/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp @@ -63,7 +63,7 @@ public:      struct npc_corporal_keeshanAI : public npc_escortAI      { -        npc_corporal_keeshanAI(Creature* creature) : npc_escortAI(creature) {} +        npc_corporal_keeshanAI(Creature* creature) : npc_escortAI(creature) { }          uint32 uiPhase;          uint32 uiTimer; diff --git a/src/server/scripts/EasternKingdoms/zone_silvermoon_city.cpp b/src/server/scripts/EasternKingdoms/zone_silvermoon_city.cpp index b5f85d38105..36abdead399 100644 --- a/src/server/scripts/EasternKingdoms/zone_silvermoon_city.cpp +++ b/src/server/scripts/EasternKingdoms/zone_silvermoon_city.cpp @@ -56,7 +56,7 @@ public:      struct npc_blood_knight_stillbladeAI : public ScriptedAI      { -        npc_blood_knight_stillbladeAI(Creature* creature) : ScriptedAI(creature) {} +        npc_blood_knight_stillbladeAI(Creature* creature) : ScriptedAI(creature) { }          uint32 lifeTimer;          bool spellHit; diff --git a/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp b/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp index 8ddd609da29..4fd7a276b04 100644 --- a/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp +++ b/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp @@ -65,7 +65,7 @@ public:      struct npc_deathstalker_erlandAI : public npc_escortAI      { -        npc_deathstalker_erlandAI(Creature* creature) : npc_escortAI(creature) {} +        npc_deathstalker_erlandAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp b/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp index 61c8e6aa28e..e4eca2c387f 100644 --- a/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp +++ b/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp @@ -489,7 +489,7 @@ public:      struct npc_tyrion_spybotAI : public npc_escortAI      { -        npc_tyrion_spybotAI(Creature* creature) : npc_escortAI(creature) {} +        npc_tyrion_spybotAI(Creature* creature) : npc_escortAI(creature) { }          uint32 uiTimer;          uint32 uiPhase; diff --git a/src/server/scripts/EasternKingdoms/zone_undercity.cpp b/src/server/scripts/EasternKingdoms/zone_undercity.cpp index 33f884408e2..f193a0cc95c 100644 --- a/src/server/scripts/EasternKingdoms/zone_undercity.cpp +++ b/src/server/scripts/EasternKingdoms/zone_undercity.cpp @@ -99,7 +99,7 @@ public:      struct npc_lady_sylvanas_windrunnerAI : public ScriptedAI      { -        npc_lady_sylvanas_windrunnerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_lady_sylvanas_windrunnerAI(Creature* creature) : ScriptedAI(creature) { }          uint32 LamentEventTimer;          bool LamentEvent; @@ -231,7 +231,7 @@ public:      struct npc_highborne_lamenterAI : public ScriptedAI      { -        npc_highborne_lamenterAI(Creature* creature) : ScriptedAI(creature) {} +        npc_highborne_lamenterAI(Creature* creature) : ScriptedAI(creature) { }          uint32 EventMoveTimer;          uint32 EventCastTimer; diff --git a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp index 8937e896faf..3247c194579 100644 --- a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp @@ -172,7 +172,7 @@ public:      struct npc_the_scourge_cauldronAI : public ScriptedAI      { -        npc_the_scourge_cauldronAI(Creature* creature) : ScriptedAI(creature) {} +        npc_the_scourge_cauldronAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} diff --git a/src/server/scripts/EasternKingdoms/zone_westfall.cpp b/src/server/scripts/EasternKingdoms/zone_westfall.cpp index 0ded937d5a8..311a82bdea8 100644 --- a/src/server/scripts/EasternKingdoms/zone_westfall.cpp +++ b/src/server/scripts/EasternKingdoms/zone_westfall.cpp @@ -84,7 +84,7 @@ public:      struct npc_daphne_stilwellAI : public npc_escortAI      { -        npc_daphne_stilwellAI(Creature* creature) : npc_escortAI(creature) {} +        npc_daphne_stilwellAI(Creature* creature) : npc_escortAI(creature) { }          uint32 uiWPHolder;          uint32 uiShootTimer; diff --git a/src/server/scripts/Events/childrens_week.cpp b/src/server/scripts/Events/childrens_week.cpp index ca9d4cbc49e..75c5ef797e1 100644 --- a/src/server/scripts/Events/childrens_week.cpp +++ b/src/server/scripts/Events/childrens_week.cpp @@ -146,11 +146,11 @@ uint64 getOrphanGUID(Player* player, uint32 orphan)  class npc_winterfin_playmate : public CreatureScript  {      public: -        npc_winterfin_playmate() : CreatureScript("npc_winterfin_playmate") {} +        npc_winterfin_playmate() : CreatureScript("npc_winterfin_playmate") { }          struct npc_winterfin_playmateAI : public ScriptedAI          { -            npc_winterfin_playmateAI(Creature* creature) : ScriptedAI(creature) {} +            npc_winterfin_playmateAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -245,11 +245,11 @@ class npc_winterfin_playmate : public CreatureScript  class npc_snowfall_glade_playmate : public CreatureScript  {      public: -        npc_snowfall_glade_playmate() : CreatureScript("npc_snowfall_glade_playmate") {} +        npc_snowfall_glade_playmate() : CreatureScript("npc_snowfall_glade_playmate") { }          struct npc_snowfall_glade_playmateAI : public ScriptedAI          { -            npc_snowfall_glade_playmateAI(Creature* creature) : ScriptedAI(creature) {} +            npc_snowfall_glade_playmateAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -343,7 +343,7 @@ class npc_snowfall_glade_playmate : public CreatureScript  class npc_the_biggest_tree : public CreatureScript  {      public: -        npc_the_biggest_tree() : CreatureScript("npc_the_biggest_tree") {} +        npc_the_biggest_tree() : CreatureScript("npc_the_biggest_tree") { }          struct npc_the_biggest_treeAI : public ScriptedAI          { @@ -433,11 +433,11 @@ class npc_the_biggest_tree : public CreatureScript  class npc_high_oracle_soo_roo : public CreatureScript  {      public: -        npc_high_oracle_soo_roo() : CreatureScript("npc_high_oracle_soo_roo") {} +        npc_high_oracle_soo_roo() : CreatureScript("npc_high_oracle_soo_roo") { }          struct npc_high_oracle_soo_rooAI : public ScriptedAI          { -            npc_high_oracle_soo_rooAI(Creature* creature) : ScriptedAI(creature) {} +            npc_high_oracle_soo_rooAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -522,11 +522,11 @@ class npc_high_oracle_soo_roo : public CreatureScript  class npc_elder_kekek : public CreatureScript  {      public: -        npc_elder_kekek() : CreatureScript("npc_elder_kekek") {} +        npc_elder_kekek() : CreatureScript("npc_elder_kekek") { }          struct npc_elder_kekekAI : public ScriptedAI          { -            npc_elder_kekekAI(Creature* creature) : ScriptedAI(creature) {} +            npc_elder_kekekAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -611,11 +611,11 @@ class npc_elder_kekek : public CreatureScript  class npc_the_etymidian : public CreatureScript  {      public: -        npc_the_etymidian() : CreatureScript("npc_the_etymidian") {} +        npc_the_etymidian() : CreatureScript("npc_the_etymidian") { }          struct npc_the_etymidianAI : public ScriptedAI          { -            npc_the_etymidianAI(Creature* creature) : ScriptedAI(creature) {} +            npc_the_etymidianAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -707,11 +707,11 @@ class npc_the_etymidian : public CreatureScript  class npc_alexstraza_the_lifebinder : public CreatureScript  {      public: -        npc_alexstraza_the_lifebinder() : CreatureScript("npc_alexstraza_the_lifebinder") {} +        npc_alexstraza_the_lifebinder() : CreatureScript("npc_alexstraza_the_lifebinder") { }          struct npc_alexstraza_the_lifebinderAI : public ScriptedAI          { -            npc_alexstraza_the_lifebinderAI(Creature* creature) : ScriptedAI(creature) {} +            npc_alexstraza_the_lifebinderAI(Creature* creature) : ScriptedAI(creature) { }              void Reset()              { @@ -924,7 +924,7 @@ class at_bring_your_orphan_to : public AreaTriggerScript  class npc_cw_area_trigger : public CreatureScript  {      public: -        npc_cw_area_trigger() : CreatureScript("npc_cw_area_trigger") {} +        npc_cw_area_trigger() : CreatureScript("npc_cw_area_trigger") { }          struct npc_cw_area_triggerAI : public ScriptedAI          { @@ -1021,7 +1021,7 @@ class npc_cw_area_trigger : public CreatureScript  class npc_grizzlemaw_cw_trigger : public CreatureScript  {      public: -        npc_grizzlemaw_cw_trigger() : CreatureScript("npc_grizzlemaw_cw_trigger") {} +        npc_grizzlemaw_cw_trigger() : CreatureScript("npc_grizzlemaw_cw_trigger") { }          struct npc_grizzlemaw_cw_triggerAI : public ScriptedAI          { diff --git a/src/server/scripts/Examples/example_creature.cpp b/src/server/scripts/Examples/example_creature.cpp index 92c248c1fc9..b13ec1e1503 100644 --- a/src/server/scripts/Examples/example_creature.cpp +++ b/src/server/scripts/Examples/example_creature.cpp @@ -94,7 +94,7 @@ class example_creature : public CreatureScript          {              // *** HANDLED FUNCTION ***              //This is the constructor, called only once when the Creature is first created -            example_creatureAI(Creature* creature) : ScriptedAI(creature) {} +            example_creatureAI(Creature* creature) : ScriptedAI(creature) { }              // *** CUSTOM VARIABLES ****              //These variables are for use only by this individual script. diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp index 6aa12e8ce77..b1d3dba105e 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp @@ -64,7 +64,7 @@ public:      struct instance_blackfathom_deeps_InstanceMapScript : public InstanceScript      { -        instance_blackfathom_deeps_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_blackfathom_deeps_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint64 twilightLordKelrisGUID;          uint64 shrine1GUID; diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp index 3623ad88a0a..b030c8b33a3 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp @@ -146,7 +146,7 @@ public:      struct npc_doomfireAI : public ScriptedAI      { -        npc_doomfireAI(Creature* creature) : ScriptedAI(creature) {} +        npc_doomfireAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -175,7 +175,7 @@ public:      struct npc_doomfire_targettingAI : public ScriptedAI      { -        npc_doomfire_targettingAI(Creature* creature) : ScriptedAI(creature) {} +        npc_doomfire_targettingAI(Creature* creature) : ScriptedAI(creature) { }          uint64 TargetGUID;          uint32 ChangeTargetTimer; diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp index 5f425f780cb..6bfd04a7614 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp @@ -54,7 +54,7 @@ public:      struct instance_mount_hyjal_InstanceMapScript : public InstanceScript      { -        instance_mount_hyjal_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_mount_hyjal_InstanceMapScript(Map* map) : InstanceScript(map) { }          void Initialize() OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp index 681ed8e447f..c623ff40a10 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp @@ -114,7 +114,7 @@ public:      struct boss_lieutenant_drakeAI : public ScriptedAI      { -        boss_lieutenant_drakeAI(Creature* creature) : ScriptedAI(creature) {} +        boss_lieutenant_drakeAI(Creature* creature) : ScriptedAI(creature) { }          bool CanPatrol;          uint32 wpId; diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp index 0cb9c1e454d..e9edbb46537 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp @@ -52,7 +52,7 @@ public:      struct instance_old_hillsbrad_InstanceMapScript : public InstanceScript      { -        instance_old_hillsbrad_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_old_hillsbrad_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER];          uint32 mBarrelCount; diff --git a/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp b/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp index a478d7aea25..e28e65b6911 100644 --- a/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp +++ b/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp @@ -37,7 +37,7 @@ public:      struct instance_dire_maul_InstanceMapScript : public InstanceScript      { -        instance_dire_maul_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_dire_maul_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp index b8c1b4746b2..39d3df823f6 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp @@ -45,7 +45,7 @@ public:      struct celebras_the_cursedAI : public ScriptedAI      { -        celebras_the_cursedAI(Creature* creature) : ScriptedAI(creature) {} +        celebras_the_cursedAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WrathTimer;          uint32 EntanglingRootsTimer; diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp index 3cf6e3fab33..723070fd18d 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp @@ -45,7 +45,7 @@ public:      struct boss_landslideAI : public ScriptedAI      { -        boss_landslideAI(Creature* creature) : ScriptedAI(creature) {} +        boss_landslideAI(Creature* creature) : ScriptedAI(creature) { }          uint32 KnockAwayTimer;          uint32 TrampleTimer; diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp index d512478a229..1196c21b0dd 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp @@ -44,7 +44,7 @@ public:      struct boss_noxxionAI : public ScriptedAI      { -        boss_noxxionAI(Creature* creature) : ScriptedAI(creature) {} +        boss_noxxionAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ToxicVolleyTimer;          uint32 UppercutTimer; diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp index 7098d0da3fb..95632edfe9b 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp @@ -47,7 +47,7 @@ public:      struct boss_ptheradrasAI : public ScriptedAI      { -        boss_ptheradrasAI(Creature* creature) : ScriptedAI(creature) {} +        boss_ptheradrasAI(Creature* creature) : ScriptedAI(creature) { }          uint32 DustfieldTimer;          uint32 BoulderTimer; diff --git a/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp b/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp index a44f4078a9b..53b04c9b4e7 100644 --- a/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp @@ -37,7 +37,7 @@ public:      struct instance_maraudon_InstanceMapScript : public InstanceScript      { -        instance_maraudon_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_maraudon_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp b/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp index aaf6b059c3a..fcb6a484a9b 100644 --- a/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp +++ b/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp @@ -43,7 +43,7 @@ public:      struct instance_onyxias_lair_InstanceMapScript : public InstanceScript      { -        instance_onyxias_lair_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_onyxias_lair_InstanceMapScript(Map* map) : InstanceScript(map) { }          //Eruption is a BFS graph problem          //One map to remember all floor, one map to keep floor that still need to erupt and one queue to know what needs to be removed diff --git a/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp b/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp index 6b13fecb26a..2205845e6f8 100644 --- a/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp +++ b/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp @@ -37,7 +37,7 @@ public:      struct instance_ragefire_chasm_InstanceMapScript : public InstanceScript      { -        instance_ragefire_chasm_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_ragefire_chasm_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp index 15b1fa51548..4a4d7fe4b07 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp @@ -52,7 +52,7 @@ public:      struct boss_amnennar_the_coldbringerAI : public ScriptedAI      { -        boss_amnennar_the_coldbringerAI(Creature* creature) : ScriptedAI(creature) {} +        boss_amnennar_the_coldbringerAI(Creature* creature) : ScriptedAI(creature) { }          uint32 AmnenarsWrath_Timer;          uint32 FrostBolt_Timer; diff --git a/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp b/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp index b40429af794..4bf2ed9d8bf 100644 --- a/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp +++ b/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp @@ -42,7 +42,7 @@ public:      struct instance_razorfen_kraul_InstanceMapScript : public InstanceScript      { -        instance_razorfen_kraul_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_razorfen_kraul_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint64 DoorWardGUID;          int WardKeeperDeath; diff --git a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp index 13ce8e8c964..33f825421bb 100644 --- a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp +++ b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp @@ -66,7 +66,7 @@ public:      struct npc_willixAI : public npc_escortAI      { -        npc_willixAI(Creature* creature) : npc_escortAI(creature) {} +        npc_willixAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -149,7 +149,7 @@ enum SnufflenoseGopher  struct DistanceOrder : public std::binary_function<GameObject, GameObject, bool>  { -    DistanceOrder(Creature* me) : me(me) {} +    DistanceOrder(Creature* me) : me(me) { }      bool operator() (GameObject* first, GameObject* second)      { diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp index 52ef2a5430b..0cf56df50e3 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp @@ -22,7 +22,7 @@  class instance_ruins_of_ahnqiraj : public InstanceMapScript  {      public: -        instance_ruins_of_ahnqiraj() : InstanceMapScript("instance_ruins_of_ahnqiraj", 509) {} +        instance_ruins_of_ahnqiraj() : InstanceMapScript("instance_ruins_of_ahnqiraj", 509) { }          struct instance_ruins_of_ahnqiraj_InstanceMapScript : public InstanceScript          { diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp index 59c7565d060..bc6f03517b8 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp @@ -53,7 +53,7 @@ public:      struct boss_fankrissAI : public ScriptedAI      { -        boss_fankrissAI(Creature* creature) : ScriptedAI(creature) {} +        boss_fankrissAI(Creature* creature) : ScriptedAI(creature) { }          uint32 MortalWound_Timer;          uint32 SpawnHatchlings_Timer; diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp index 54da5a30802..2104d7f5837 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp @@ -51,7 +51,7 @@ public:      struct boss_huhuranAI : public ScriptedAI      { -        boss_huhuranAI(Creature* creature) : ScriptedAI(creature) {} +        boss_huhuranAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Frenzy_Timer;          uint32 Wyvern_Timer; diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp index 36dd93076e7..33c3f29b94e 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp @@ -48,7 +48,7 @@ public:      struct boss_ouroAI : public ScriptedAI      { -        boss_ouroAI(Creature* creature) : ScriptedAI(creature) {} +        boss_ouroAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Sweep_Timer;          uint32 SandBlast_Timer; diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp index a12da4fabd1..a3edd9ad83d 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp @@ -53,7 +53,7 @@ public:      struct boss_sarturaAI : public ScriptedAI      { -        boss_sarturaAI(Creature* creature) : ScriptedAI(creature) {} +        boss_sarturaAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WhirlWind_Timer;          uint32 WhirlWindRandom_Timer; @@ -196,7 +196,7 @@ public:      struct npc_sartura_royal_guardAI : public ScriptedAI      { -        npc_sartura_royal_guardAI(Creature* creature) : ScriptedAI(creature) {} +        npc_sartura_royal_guardAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WhirlWind_Timer;          uint32 WhirlWindRandom_Timer; diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp index e9cf887f22b..1d888f3ce8b 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp @@ -400,7 +400,7 @@ public:      struct boss_veknilashAI : public boss_twinemperorsAI      {          bool IAmVeklor() {return false;} -        boss_veknilashAI(Creature* creature) : boss_twinemperorsAI(creature) {} +        boss_veknilashAI(Creature* creature) : boss_twinemperorsAI(creature) { }          uint32 UpperCut_Timer;          uint32 UnbalancingStrike_Timer; @@ -486,7 +486,7 @@ public:      struct boss_veklorAI : public boss_twinemperorsAI      {          bool IAmVeklor() {return true;} -        boss_veklorAI(Creature* creature) : boss_twinemperorsAI(creature) {} +        boss_veklorAI(Creature* creature) : boss_twinemperorsAI(creature) { }          uint32 ShadowBolt_Timer;          uint32 Blizzard_Timer; diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp index 54845c6b746..0a5733f1c7f 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp @@ -39,7 +39,7 @@ class instance_temple_of_ahnqiraj : public InstanceMapScript          struct instance_temple_of_ahnqiraj_InstanceMapScript : public InstanceScript          { -            instance_temple_of_ahnqiraj_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_temple_of_ahnqiraj_InstanceMapScript(Map* map) : InstanceScript(map) { }              //If Vem is dead...              bool IsBossDied[3]; diff --git a/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp b/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp index 5c4fb7bbaba..522345c4fd4 100644 --- a/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp +++ b/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp @@ -41,7 +41,7 @@ public:      struct instance_wailing_caverns_InstanceMapScript : public InstanceScript      { -        instance_wailing_caverns_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_wailing_caverns_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER]; diff --git a/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp b/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp index 8e2d393e6a6..8cb1cfebd15 100644 --- a/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp +++ b/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp @@ -108,7 +108,7 @@ public:      struct instance_zulfarrak_InstanceMapScript : public InstanceScript      { -        instance_zulfarrak_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_zulfarrak_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 GahzRillaEncounter;          uint64 ZumrahGUID; diff --git a/src/server/scripts/Kalimdor/boss_azuregos.cpp b/src/server/scripts/Kalimdor/boss_azuregos.cpp index 56d380b7b46..dbc7abe7bf7 100644 --- a/src/server/scripts/Kalimdor/boss_azuregos.cpp +++ b/src/server/scripts/Kalimdor/boss_azuregos.cpp @@ -54,7 +54,7 @@ public:      struct boss_azuregosAI : public ScriptedAI      { -        boss_azuregosAI(Creature* creature) : ScriptedAI(creature) {} +        boss_azuregosAI(Creature* creature) : ScriptedAI(creature) { }          uint32 MarkOfFrostTimer;          uint32 ManaStormTimer; diff --git a/src/server/scripts/Kalimdor/zone_ashenvale.cpp b/src/server/scripts/Kalimdor/zone_ashenvale.cpp index bd4c2f893c5..b1c2566cdce 100644 --- a/src/server/scripts/Kalimdor/zone_ashenvale.cpp +++ b/src/server/scripts/Kalimdor/zone_ashenvale.cpp @@ -72,7 +72,7 @@ class npc_torek : public CreatureScript          struct npc_torekAI : public npc_escortAI          { -            npc_torekAI(Creature* creature) : npc_escortAI(creature) {} +            npc_torekAI(Creature* creature) : npc_escortAI(creature) { }              uint32 Rend_Timer;              uint32 Thunderclap_Timer; diff --git a/src/server/scripts/Kalimdor/zone_azshara.cpp b/src/server/scripts/Kalimdor/zone_azshara.cpp index f48bd1f9339..011aff1928f 100644 --- a/src/server/scripts/Kalimdor/zone_azshara.cpp +++ b/src/server/scripts/Kalimdor/zone_azshara.cpp @@ -52,7 +52,7 @@ public:      struct npc_spitelashesAI : public ScriptedAI      { -        npc_spitelashesAI(Creature* creature) : ScriptedAI(creature) {} +        npc_spitelashesAI(Creature* creature) : ScriptedAI(creature) { }          uint32 morphtimer;          bool spellhit; @@ -309,7 +309,7 @@ public:      struct npc_rizzle_sprysprocketAI : public ScriptedAI      { -        npc_rizzle_sprysprocketAI(Creature* creature) : ScriptedAI(creature) {} +        npc_rizzle_sprysprocketAI(Creature* creature) : ScriptedAI(creature) { }          uint32 SpellEscapeTimer;          uint32 TeleportTimer; @@ -477,7 +477,7 @@ public:      struct npc_depth_chargeAI : public ScriptedAI      { -        npc_depth_chargeAI(Creature* creature) : ScriptedAI(creature) {} +        npc_depth_chargeAI(Creature* creature) : ScriptedAI(creature) { }          bool WeMustDie;          uint32 WeMustDieTimer; diff --git a/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp b/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp index e0d181646e1..29b5249d2dd 100644 --- a/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp +++ b/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp @@ -68,7 +68,7 @@ public:      struct npc_draenei_survivorAI : public ScriptedAI      { -        npc_draenei_survivorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_draenei_survivorAI(Creature* creature) : ScriptedAI(creature) { }          uint64 pCaster; @@ -301,7 +301,7 @@ public:      struct npc_injured_draeneiAI : public ScriptedAI      { -        npc_injured_draeneiAI(Creature* creature) : ScriptedAI(creature) {} +        npc_injured_draeneiAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -368,7 +368,7 @@ public:      struct npc_magwinAI : public npc_escortAI      { -        npc_magwinAI(Creature* creature) : npc_escortAI(creature) {} +        npc_magwinAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -442,7 +442,7 @@ public:      struct npc_geezleAI : public ScriptedAI      { -        npc_geezleAI(Creature* creature) : ScriptedAI(creature) {} +        npc_geezleAI(Creature* creature) : ScriptedAI(creature) { }          uint64 SparkGUID; @@ -677,7 +677,7 @@ class npc_stillpine_capitive : public CreatureScript          struct npc_stillpine_capitiveAI : public ScriptedAI          { -            npc_stillpine_capitiveAI(Creature* creature) : ScriptedAI(creature) {} +            npc_stillpine_capitiveAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp b/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp index 8ee1de1c8d5..0f2c72eb298 100644 --- a/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp +++ b/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp @@ -52,7 +52,7 @@ public:      struct npc_webbed_creatureAI : public ScriptedAI      { -        npc_webbed_creatureAI(Creature* creature) : ScriptedAI(creature) {} +        npc_webbed_creatureAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -185,7 +185,7 @@ public:      struct npc_princess_stillpineAI : public ScriptedAI      { -        npc_princess_stillpineAI(Creature* creature) : ScriptedAI(creature) {} +        npc_princess_stillpineAI(Creature* creature) : ScriptedAI(creature) { }          void MovementInform(uint32 type, uint32 id) OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/zone_darkshore.cpp b/src/server/scripts/Kalimdor/zone_darkshore.cpp index 5350693471b..984d404f1ce 100644 --- a/src/server/scripts/Kalimdor/zone_darkshore.cpp +++ b/src/server/scripts/Kalimdor/zone_darkshore.cpp @@ -223,7 +223,7 @@ public:      struct npc_prospector_remtravelAI : public npc_escortAI      { -        npc_prospector_remtravelAI(Creature* creature) : npc_escortAI(creature) {} +        npc_prospector_remtravelAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/zone_desolace.cpp b/src/server/scripts/Kalimdor/zone_desolace.cpp index 05496c0fcda..f1aa4c0841a 100644 --- a/src/server/scripts/Kalimdor/zone_desolace.cpp +++ b/src/server/scripts/Kalimdor/zone_desolace.cpp @@ -75,7 +75,7 @@ public:      struct npc_aged_dying_ancient_kodoAI : public ScriptedAI      { -        npc_aged_dying_ancient_kodoAI(Creature* creature) : ScriptedAI(creature) {} +        npc_aged_dying_ancient_kodoAI(Creature* creature) : ScriptedAI(creature) { }          void MoveInLineOfSight(Unit* who) OVERRIDE diff --git a/src/server/scripts/Kalimdor/zone_durotar.cpp b/src/server/scripts/Kalimdor/zone_durotar.cpp index 1eec2c826ea..ff96d5e8465 100644 --- a/src/server/scripts/Kalimdor/zone_durotar.cpp +++ b/src/server/scripts/Kalimdor/zone_durotar.cpp @@ -51,7 +51,7 @@ public:      struct npc_lazy_peonAI : public ScriptedAI      { -        npc_lazy_peonAI(Creature* creature) : ScriptedAI(creature) {} +        npc_lazy_peonAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID; @@ -230,7 +230,7 @@ class npc_tiger_matriarch_credit : public CreatureScript  class npc_tiger_matriarch : public CreatureScript  {      public: -        npc_tiger_matriarch() : CreatureScript("npc_tiger_matriarch") {} +        npc_tiger_matriarch() : CreatureScript("npc_tiger_matriarch") { }          struct npc_tiger_matriarchAI : public ScriptedAI          { @@ -443,7 +443,7 @@ typedef npc_troll_volunteer::npc_troll_volunteerAI VolunteerAI;  class spell_mount_check : public SpellScriptLoader  {      public: -        spell_mount_check() : SpellScriptLoader("spell_mount_check") {} +        spell_mount_check() : SpellScriptLoader("spell_mount_check") { }          class spell_mount_check_AuraScript : public AuraScript          { @@ -491,7 +491,7 @@ class spell_mount_check : public SpellScriptLoader  class spell_voljin_war_drums : public SpellScriptLoader  {      public: -        spell_voljin_war_drums() : SpellScriptLoader("spell_voljin_war_drums") {} +        spell_voljin_war_drums() : SpellScriptLoader("spell_voljin_war_drums") { }          class spell_voljin_war_drums_SpellScript : public SpellScript          { @@ -548,7 +548,7 @@ enum VoodooSpells  class spell_voodoo : public SpellScriptLoader  {      public: -        spell_voodoo() : SpellScriptLoader("spell_voodoo") {} +        spell_voodoo() : SpellScriptLoader("spell_voodoo") { }          class spell_voodoo_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Kalimdor/zone_moonglade.cpp b/src/server/scripts/Kalimdor/zone_moonglade.cpp index 509adb566cd..7fb423f53ee 100644 --- a/src/server/scripts/Kalimdor/zone_moonglade.cpp +++ b/src/server/scripts/Kalimdor/zone_moonglade.cpp @@ -667,7 +667,7 @@ public:      struct npc_giant_spotlightAI : public ScriptedAI      { -        npc_giant_spotlightAI(Creature* creature) : ScriptedAI(creature) {} +        npc_giant_spotlightAI(Creature* creature) : ScriptedAI(creature) { }          EventMap events; diff --git a/src/server/scripts/Kalimdor/zone_mulgore.cpp b/src/server/scripts/Kalimdor/zone_mulgore.cpp index 6b42b971531..5d582169560 100644 --- a/src/server/scripts/Kalimdor/zone_mulgore.cpp +++ b/src/server/scripts/Kalimdor/zone_mulgore.cpp @@ -98,7 +98,7 @@ public:      struct npc_kyle_frenziedAI : public ScriptedAI      { -        npc_kyle_frenziedAI(Creature* creature) : ScriptedAI(creature) {} +        npc_kyle_frenziedAI(Creature* creature) : ScriptedAI(creature) { }          bool EventActive;          bool IsMovingToLunch; @@ -271,7 +271,7 @@ public:      struct npc_plains_visionAI  : public ScriptedAI      { -        npc_plains_visionAI(Creature* creature) : ScriptedAI(creature) {} +        npc_plains_visionAI(Creature* creature) : ScriptedAI(creature) { }          bool newWaypoint;          uint8 WayPointId; diff --git a/src/server/scripts/Kalimdor/zone_orgrimmar.cpp b/src/server/scripts/Kalimdor/zone_orgrimmar.cpp index 7928ab10978..5c8327e99bd 100644 --- a/src/server/scripts/Kalimdor/zone_orgrimmar.cpp +++ b/src/server/scripts/Kalimdor/zone_orgrimmar.cpp @@ -64,7 +64,7 @@ public:      struct npc_shenthulAI : public ScriptedAI      { -        npc_shenthulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_shenthulAI(Creature* creature) : ScriptedAI(creature) { }          bool CanTalk;          bool CanEmote; @@ -211,7 +211,7 @@ public:      struct npc_thrall_warchiefAI : public ScriptedAI      { -        npc_thrall_warchiefAI(Creature* creature) : ScriptedAI(creature) {} +        npc_thrall_warchiefAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ChainLightningTimer;          uint32 ShockTimer; diff --git a/src/server/scripts/Kalimdor/zone_silithus.cpp b/src/server/scripts/Kalimdor/zone_silithus.cpp index 79bd6f691e6..08459764ceb 100644 --- a/src/server/scripts/Kalimdor/zone_silithus.cpp +++ b/src/server/scripts/Kalimdor/zone_silithus.cpp @@ -496,7 +496,7 @@ public:      struct npc_anachronos_the_ancientAI : public ScriptedAI      { -        npc_anachronos_the_ancientAI(Creature* creature) : ScriptedAI(creature) {} +        npc_anachronos_the_ancientAI(Creature* creature) : ScriptedAI(creature) { }          uint32 AnimationTimer;          uint8 AnimationCount; @@ -824,7 +824,7 @@ public:      struct npc_qiraj_war_spawnAI : public ScriptedAI      { -        npc_qiraj_war_spawnAI(Creature* creature) : ScriptedAI(creature) {} +        npc_qiraj_war_spawnAI(Creature* creature) : ScriptedAI(creature) { }          uint64 MobGUID;          uint64 PlayerGUID; @@ -937,7 +937,7 @@ public:      struct npc_anachronos_quest_triggerAI : public ScriptedAI      { -        npc_anachronos_quest_triggerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_anachronos_quest_triggerAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID; diff --git a/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp b/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp index 058cd19e3b4..5ed335fa4d7 100644 --- a/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp +++ b/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp @@ -115,7 +115,7 @@ public:      struct npc_kaya_flathoofAI : public npc_escortAI      { -        npc_kaya_flathoofAI(Creature* creature) : npc_escortAI(creature) {} +        npc_kaya_flathoofAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/zone_tanaris.cpp b/src/server/scripts/Kalimdor/zone_tanaris.cpp index 0b12e6bf48c..1513d1aecfa 100644 --- a/src/server/scripts/Kalimdor/zone_tanaris.cpp +++ b/src/server/scripts/Kalimdor/zone_tanaris.cpp @@ -65,7 +65,7 @@ public:      struct npc_aquementasAI : public ScriptedAI      { -        npc_aquementasAI(Creature* creature) : ScriptedAI(creature) {} +        npc_aquementasAI(Creature* creature) : ScriptedAI(creature) { }          uint32 SendItemTimer;          uint32 SwitchFactionTimer; @@ -182,7 +182,7 @@ public:      struct npc_custodian_of_timeAI : public npc_escortAI      { -        npc_custodian_of_timeAI(Creature* creature) : npc_escortAI(creature) {} +        npc_custodian_of_timeAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -470,7 +470,7 @@ public:      struct npc_OOX17AI : public npc_escortAI      { -        npc_OOX17AI(Creature* creature) : npc_escortAI(creature) {} +        npc_OOX17AI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/zone_the_barrens.cpp b/src/server/scripts/Kalimdor/zone_the_barrens.cpp index 122ce84091b..b68f4c9e9a0 100644 --- a/src/server/scripts/Kalimdor/zone_the_barrens.cpp +++ b/src/server/scripts/Kalimdor/zone_the_barrens.cpp @@ -314,7 +314,7 @@ public:      struct npc_twiggy_flatheadAI : public ScriptedAI      { -        npc_twiggy_flatheadAI(Creature* creature) : ScriptedAI(creature) {} +        npc_twiggy_flatheadAI(Creature* creature) : ScriptedAI(creature) { }          bool EventInProgress;          bool EventGrate; diff --git a/src/server/scripts/Kalimdor/zone_thousand_needles.cpp b/src/server/scripts/Kalimdor/zone_thousand_needles.cpp index 9afa825972f..3fd0d98a865 100644 --- a/src/server/scripts/Kalimdor/zone_thousand_needles.cpp +++ b/src/server/scripts/Kalimdor/zone_thousand_needles.cpp @@ -433,7 +433,7 @@ public:      struct npc_enraged_pantherAI : public ScriptedAI      { -        npc_enraged_pantherAI(Creature* creature) : ScriptedAI(creature) {} +        npc_enraged_pantherAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp b/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp index 7dda6ab027f..b0a9da774c5 100644 --- a/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp +++ b/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp @@ -79,7 +79,7 @@ public:      struct npc_cairne_bloodhoofAI : public ScriptedAI      { -        npc_cairne_bloodhoofAI(Creature* creature) : ScriptedAI(creature) {} +        npc_cairne_bloodhoofAI(Creature* creature) : ScriptedAI(creature) { }          uint32 BerserkerChargeTimer;          uint32 CleaveTimer; diff --git a/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp b/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp index 3dc77e0cf04..5f19e838c8a 100644 --- a/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp +++ b/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp @@ -77,7 +77,7 @@ public:      struct npc_ameAI : public npc_escortAI      { -        npc_ameAI(Creature* creature) : npc_escortAI(creature) {} +        npc_ameAI(Creature* creature) : npc_escortAI(creature) { }          uint32 DemoralizingShoutTimer; diff --git a/src/server/scripts/Kalimdor/zone_winterspring.cpp b/src/server/scripts/Kalimdor/zone_winterspring.cpp index 92d15322f4c..f5976333ee6 100644 --- a/src/server/scripts/Kalimdor/zone_winterspring.cpp +++ b/src/server/scripts/Kalimdor/zone_winterspring.cpp @@ -199,7 +199,7 @@ public:  protected:      /// Will be called when a dialogue step was done -    virtual void JustDidDialogueStep(int32 /*entry*/) {} +    virtual void JustDidDialogueStep(int32 /*entry*/) { }      /// Will be called to get a speaker, MUST be implemented if not used in instances      virtual Creature* GetSpeakerByEntry(int32 /*entry*/) { return NULL; } diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp index 7132ba825f1..a0f7fe23a8a 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp @@ -165,7 +165,7 @@ public:      struct npc_amanitar_mushroomsAI : public ScriptedAI      { -        npc_amanitar_mushroomsAI(Creature* creature) : ScriptedAI(creature) {} +        npc_amanitar_mushroomsAI(Creature* creature) : ScriptedAI(creature) { }          EventMap events; diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp index c549de9dda1..627975ab0f1 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp @@ -291,7 +291,7 @@ public:  class achievement_respect_your_elders : public AchievementCriteriaScript  {  public: -    achievement_respect_your_elders() : AchievementCriteriaScript("achievement_respect_your_elders") {} +    achievement_respect_your_elders() : AchievementCriteriaScript("achievement_respect_your_elders") { }      bool OnCheck(Player* /*player*/, Unit* target) OVERRIDE      { diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp index c5e40052a9d..ab2c22455ba 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp @@ -206,7 +206,7 @@ public:      struct npc_skittering_infectorAI : public ScriptedAI      { -        npc_skittering_infectorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_skittering_infectorAI(Creature* creature) : ScriptedAI(creature) { }          void JustDied(Unit* /*killer*/) OVERRIDE          { @@ -228,7 +228,7 @@ public:      struct npc_anub_ar_skirmisherAI : public ScriptedAI      { -        npc_anub_ar_skirmisherAI(Creature* creature) : ScriptedAI(creature) {} +        npc_anub_ar_skirmisherAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiChargeTimer;          uint32 uiBackstabTimer; @@ -279,7 +279,7 @@ public:      struct npc_anub_ar_shadowcasterAI : public ScriptedAI      { -        npc_anub_ar_shadowcasterAI(Creature* creature) : ScriptedAI(creature) {} +        npc_anub_ar_shadowcasterAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiShadowBoltTimer;          uint32 uiShadowNovaTimer; @@ -370,7 +370,7 @@ public:      struct npc_watcher_gashraAI : public ScriptedAI      { -        npc_watcher_gashraAI(Creature* creature) : ScriptedAI(creature) {} +        npc_watcher_gashraAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiWebWrapTimer;          uint32 uiInfectedBiteTimer; @@ -421,7 +421,7 @@ public:      struct npc_watcher_narjilAI : public ScriptedAI      { -        npc_watcher_narjilAI(Creature* creature) : ScriptedAI(creature) {} +        npc_watcher_narjilAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiWebWrapTimer;          uint32 uiInfectedBiteTimer; @@ -475,7 +475,7 @@ public:      struct npc_watcher_silthikAI : public ScriptedAI      { -        npc_watcher_silthikAI(Creature* creature) : ScriptedAI(creature) {} +        npc_watcher_silthikAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiWebWrapTimer;          uint32 uiInfectedBiteTimer; diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp index 1c1cdbdac53..3056ec90807 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp @@ -991,7 +991,7 @@ public:      struct npc_tenebronAI : public dummy_dragonAI      { -        npc_tenebronAI(Creature* creature) : dummy_dragonAI(creature) {} +        npc_tenebronAI(Creature* creature) : dummy_dragonAI(creature) { }          uint32 m_uiShadowBreathTimer;          uint32 m_uiShadowFissureTimer; @@ -1082,7 +1082,7 @@ public:      struct npc_shadronAI : public dummy_dragonAI      { -        npc_shadronAI(Creature* creature) : dummy_dragonAI(creature) {} +        npc_shadronAI(Creature* creature) : dummy_dragonAI(creature) { }          uint32 m_uiShadowBreathTimer;          uint32 m_uiShadowFissureTimer; @@ -1188,7 +1188,7 @@ public:      struct npc_vesperonAI : public dummy_dragonAI      { -        npc_vesperonAI(Creature* creature) : dummy_dragonAI(creature) {} +        npc_vesperonAI(Creature* creature) : dummy_dragonAI(creature) { }          uint32 m_uiShadowBreathTimer;          uint32 m_uiShadowFissureTimer; diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp index f5ef0f7cab3..ace2258ac9f 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp @@ -37,7 +37,7 @@ public:      struct instance_obsidian_sanctum_InstanceMapScript : public InstanceScript      { -        instance_obsidian_sanctum_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_obsidian_sanctum_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER];          uint64 m_uiSartharionGUID; diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp index 7561d1c4991..62a0e6c0271 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp @@ -1620,7 +1620,7 @@ class spell_halion_clear_debuffs : public SpellScriptLoader  class TwilightCutterSelector  {      public: -        TwilightCutterSelector(Unit* caster, Unit* target) : _caster(caster), _channelTarget(target) {} +        TwilightCutterSelector(Unit* caster, Unit* target) : _caster(caster), _channelTarget(target) { }          bool operator()(WorldObject* unit)          { diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp index 9d7a3c17b1b..f6fd1c14a9b 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp @@ -417,7 +417,7 @@ public:      struct npc_memoryAI : public ScriptedAI      { -        npc_memoryAI(Creature* creature) : ScriptedAI(creature) {} +        npc_memoryAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiOldWoundsTimer;          uint32 uiShadowPastTimer; diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp index 970c53e56ee..1922ad26060 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp @@ -311,7 +311,7 @@ public:      struct npc_risen_ghoulAI : public ScriptedAI      { -        npc_risen_ghoulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_risen_ghoulAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiAttackTimer; diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp index 78ee6ba1c6b..2a203b49764 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp @@ -41,7 +41,7 @@ public:      struct instance_trial_of_the_champion_InstanceMapScript : public InstanceScript      { -        instance_trial_of_the_champion_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_trial_of_the_champion_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[MAX_ENCOUNTER]; diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp index ce0f8e4778c..4c73d1a5f55 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp @@ -757,7 +757,7 @@ class npc_toc_druid : public CreatureScript          struct npc_toc_druidAI : public boss_faction_championsAI          { -            npc_toc_druidAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) {} +            npc_toc_druidAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) { }              void Reset() OVERRIDE              { @@ -850,7 +850,7 @@ class npc_toc_shaman : public CreatureScript          struct npc_toc_shamanAI : public boss_faction_championsAI          { -            npc_toc_shamanAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) {} +            npc_toc_shamanAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) { }              void Reset() OVERRIDE              { @@ -943,7 +943,7 @@ class npc_toc_paladin : public CreatureScript          struct npc_toc_paladinAI : public boss_faction_championsAI          { -            npc_toc_paladinAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) {} +            npc_toc_paladinAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) { }              void Reset() OVERRIDE              { @@ -1047,7 +1047,7 @@ class npc_toc_priest : public CreatureScript          struct npc_toc_priestAI : public boss_faction_championsAI          { -            npc_toc_priestAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) {} +            npc_toc_priestAI(Creature* creature) : boss_faction_championsAI(creature, AI_HEALER) { }              void Reset() OVERRIDE              { @@ -1135,7 +1135,7 @@ class npc_toc_shadow_priest : public CreatureScript          struct npc_toc_shadow_priestAI : public boss_faction_championsAI          { -            npc_toc_shadow_priestAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) {} +            npc_toc_shadow_priestAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) { }              void Reset() OVERRIDE              { @@ -1230,7 +1230,7 @@ class npc_toc_warlock : public CreatureScript          struct npc_toc_warlockAI : public boss_faction_championsAI          { -            npc_toc_warlockAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) {} +            npc_toc_warlockAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) { }              void Reset() OVERRIDE              { @@ -1321,7 +1321,7 @@ class npc_toc_mage : public CreatureScript          struct npc_toc_mageAI : public boss_faction_championsAI          { -            npc_toc_mageAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) {} +            npc_toc_mageAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) { }              void Reset() OVERRIDE              { @@ -1415,7 +1415,7 @@ class npc_toc_hunter : public CreatureScript          struct npc_toc_hunterAI : public boss_faction_championsAI          { -            npc_toc_hunterAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) {} +            npc_toc_hunterAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) { }              void Reset() OVERRIDE              { @@ -1517,7 +1517,7 @@ class npc_toc_boomkin : public CreatureScript          struct npc_toc_boomkinAI : public boss_faction_championsAI          { -            npc_toc_boomkinAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) {} +            npc_toc_boomkinAI(Creature* creature) : boss_faction_championsAI(creature, AI_RANGED) { }              void Reset() OVERRIDE              { @@ -1612,7 +1612,7 @@ class npc_toc_warrior : public CreatureScript          struct npc_toc_warriorAI : public boss_faction_championsAI          { -            npc_toc_warriorAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) {} +            npc_toc_warriorAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) { }              void Reset() OVERRIDE              { @@ -1713,7 +1713,7 @@ class npc_toc_dk : public CreatureScript          struct npc_toc_dkAI : public boss_faction_championsAI          { -            npc_toc_dkAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) {} +            npc_toc_dkAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) { }              void Reset() OVERRIDE              { @@ -1809,7 +1809,7 @@ class npc_toc_rogue : public CreatureScript          struct npc_toc_rogueAI : public boss_faction_championsAI          { -            npc_toc_rogueAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) {} +            npc_toc_rogueAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) { }              void Reset() OVERRIDE              { @@ -1914,7 +1914,7 @@ class npc_toc_enh_shaman : public CreatureScript          struct npc_toc_enh_shamanAI : public boss_faction_championsAI          { -            npc_toc_enh_shamanAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) {} +            npc_toc_enh_shamanAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) { }              void Reset() OVERRIDE              { @@ -2040,7 +2040,7 @@ class npc_toc_retro_paladin : public CreatureScript          struct npc_toc_retro_paladinAI : public boss_faction_championsAI          { -            npc_toc_retro_paladinAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) {} +            npc_toc_retro_paladinAI(Creature* creature) : boss_faction_championsAI(creature, AI_MELEE) { }              void Reset() OVERRIDE              { @@ -2146,7 +2146,7 @@ class npc_toc_pet_warlock : public CreatureScript          struct npc_toc_pet_warlockAI : public boss_faction_championsAI          { -            npc_toc_pet_warlockAI(Creature* creature) : boss_faction_championsAI(creature, AI_PET) {} +            npc_toc_pet_warlockAI(Creature* creature) : boss_faction_championsAI(creature, AI_PET) { }              void Reset() OVERRIDE              { @@ -2198,7 +2198,7 @@ class npc_toc_pet_hunter : public CreatureScript          struct npc_toc_pet_hunterAI : public boss_faction_championsAI          { -            npc_toc_pet_hunterAI(Creature* creature) : boss_faction_championsAI(creature, AI_PET) {} +            npc_toc_pet_hunterAI(Creature* creature) : boss_faction_championsAI(creature, AI_PET) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp index 7b0867b771c..6fd8811b270 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp @@ -553,7 +553,7 @@ class MistressKissTargetSelector  class spell_mistress_kiss_area : public SpellScriptLoader  {      public: -        spell_mistress_kiss_area() : SpellScriptLoader("spell_mistress_kiss_area") {} +        spell_mistress_kiss_area() : SpellScriptLoader("spell_mistress_kiss_area") { }          class spell_mistress_kiss_area_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp index 18cc45657f0..8f6b951d524 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp @@ -830,7 +830,7 @@ class npc_slime_pool : public CreatureScript  class spell_gormok_fire_bomb : public SpellScriptLoader  {      public: -        spell_gormok_fire_bomb() : SpellScriptLoader("spell_gormok_fire_bomb") {} +        spell_gormok_fire_bomb() : SpellScriptLoader("spell_gormok_fire_bomb") { }          class spell_gormok_fire_bomb_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp index eb36c35d895..0674696a033 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp @@ -462,7 +462,7 @@ class boss_eydis : public CreatureScript          struct boss_eydisAI : public boss_twin_baseAI          { -            boss_eydisAI(Creature* creature) : boss_twin_baseAI(creature) {} +            boss_eydisAI(Creature* creature) : boss_twin_baseAI(creature) { }              void Reset() OVERRIDE              { @@ -592,7 +592,7 @@ class npc_unleashed_dark : public CreatureScript          struct npc_unleashed_darkAI : public npc_unleashed_ballAI          { -            npc_unleashed_darkAI(Creature* creature) : npc_unleashed_ballAI(creature) {} +            npc_unleashed_darkAI(Creature* creature) : npc_unleashed_ballAI(creature) { }              void UpdateAI(uint32 diff) OVERRIDE              { @@ -624,7 +624,7 @@ class npc_unleashed_light : public CreatureScript          struct npc_unleashed_lightAI : public npc_unleashed_ballAI          { -            npc_unleashed_lightAI(Creature* creature) : npc_unleashed_ballAI(creature) {} +            npc_unleashed_lightAI(Creature* creature) : npc_unleashed_ballAI(creature) { }              void UpdateAI(uint32 diff) OVERRIDE              { diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp index 43e696f3b3c..9e401c4f962 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp @@ -29,7 +29,7 @@ class instance_trial_of_the_crusader : public InstanceMapScript          struct instance_trial_of_the_crusader_InstanceMapScript : public InstanceScript          { -            instance_trial_of_the_crusader_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_trial_of_the_crusader_InstanceMapScript(Map* map) : InstanceScript(map) { }              void Initialize() OVERRIDE              { diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp index 0160359f0f2..71386167d5d 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp @@ -276,11 +276,11 @@ public:  class npc_crystal_channel_target : public CreatureScript  {  public: -    npc_crystal_channel_target() : CreatureScript("npc_crystal_channel_target") {} +    npc_crystal_channel_target() : CreatureScript("npc_crystal_channel_target") { }      struct npc_crystal_channel_targetAI : public ScriptedAI      { -        npc_crystal_channel_targetAI(Creature* creature) : ScriptedAI(creature) {} +        npc_crystal_channel_targetAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -339,7 +339,7 @@ public:  class achievement_oh_novos : public AchievementCriteriaScript  {  public: -    achievement_oh_novos() : AchievementCriteriaScript("achievement_oh_novos") {} +    achievement_oh_novos() : AchievementCriteriaScript("achievement_oh_novos") { }      bool OnCheck(Player* /*player*/, Unit* target) OVERRIDE      { diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp index 530741ea710..e2d285f7306 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp @@ -57,7 +57,7 @@ public:      struct boss_falricAI : public boss_horAI      { -        boss_falricAI(Creature* creature) : boss_horAI(creature) {} +        boss_falricAI(Creature* creature) : boss_horAI(creature) { }          uint8 uiHopelessnessCount; diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp index 49fd7481dde..a87b7b6d93d 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp @@ -56,7 +56,7 @@ public:      struct boss_marwynAI : public boss_horAI      { -        boss_marwynAI(Creature* creature) : boss_horAI(creature) {} +        boss_marwynAI(Creature* creature) : boss_horAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp index 04145b8784e..1b82de35f54 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp @@ -1363,7 +1363,7 @@ public:      struct npc_phantom_hallucinationAI : public npc_phantom_mage::npc_phantom_mageAI      { -        npc_phantom_hallucinationAI(Creature* creature) : npc_phantom_mage::npc_phantom_mageAI(creature) {} +        npc_phantom_hallucinationAI(Creature* creature) : npc_phantom_mage::npc_phantom_mageAI(creature) { }          void JustDied(Unit* /*killer*/) OVERRIDE          { @@ -1728,7 +1728,7 @@ public:  class at_hor_intro_start : public AreaTriggerScript  {  public: -    at_hor_intro_start() : AreaTriggerScript("at_hor_intro_start") {} +    at_hor_intro_start() : AreaTriggerScript("at_hor_intro_start") { }      bool OnTrigger(Player* player, AreaTriggerEntry const* /*trigger*/) OVERRIDE      { @@ -1747,7 +1747,7 @@ public:  class at_hor_waves_restarter : public AreaTriggerScript  {  public: -    at_hor_waves_restarter() : AreaTriggerScript("at_hor_waves_restarter") {} +    at_hor_waves_restarter() : AreaTriggerScript("at_hor_waves_restarter") { }      bool OnTrigger(Player* player, AreaTriggerEntry const* /*trigger*/) OVERRIDE      { diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp index 50600453368..0599596fc0a 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp @@ -73,7 +73,7 @@ public:      struct instance_halls_of_reflection_InstanceMapScript : public InstanceScript      { -        instance_halls_of_reflection_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_halls_of_reflection_InstanceMapScript(Map* map) : InstanceScript(map) { }          void Initialize() OVERRIDE          { diff --git a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp index 0097fe8c4d7..441149c6dd8 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp @@ -221,7 +221,7 @@ public:      struct npc_slad_ran_constrictorAI : public ScriptedAI      { -        npc_slad_ran_constrictorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_slad_ran_constrictorAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiGripOfSladRanTimer; @@ -272,7 +272,7 @@ public:      struct npc_slad_ran_viperAI : public ScriptedAI      { -        npc_slad_ran_viperAI(Creature* creature) : ScriptedAI(creature) {} +        npc_slad_ran_viperAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiVenomousBiteTimer; diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp index bdab8f3fce6..1e5919536f3 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp @@ -636,7 +636,7 @@ class spell_blood_queen_frenzied_bloodthirst : public SpellScriptLoader  class BloodboltHitCheck  {      public: -        explicit BloodboltHitCheck(LanaThelAI* ai) : _ai(ai) {} +        explicit BloodboltHitCheck(LanaThelAI* ai) : _ai(ai) { }          bool operator()(WorldObject* object) const          { diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp index 0367a29bb30..027c8823af8 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp @@ -633,7 +633,7 @@ class npc_cult_fanatic : public CreatureScript          struct npc_cult_fanaticAI : public ScriptedAI          { -            npc_cult_fanaticAI(Creature* creature) : ScriptedAI(creature) {} +            npc_cult_fanaticAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { @@ -710,7 +710,7 @@ class npc_cult_adherent : public CreatureScript          struct npc_cult_adherentAI : public ScriptedAI          { -            npc_cult_adherentAI(Creature* creature) : ScriptedAI(creature) {} +            npc_cult_adherentAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp index 96627548848..cdcd8ed796a 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -924,7 +924,7 @@ class spell_putricide_ooze_channel : public SpellScriptLoader  class ExactDistanceCheck  {      public: -        ExactDistanceCheck(Unit* source, float dist) : _source(source), _dist(dist) {} +        ExactDistanceCheck(Unit* source, float dist) : _source(source), _dist(dist) { }          bool operator()(WorldObject* unit) const          { diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp index fba64a89d83..d8a95d5c1fb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp @@ -2422,7 +2422,7 @@ class spell_the_lich_king_raging_spirit : public SpellScriptLoader  class ExactDistanceCheck  {      public: -        ExactDistanceCheck(Unit* source, float dist) : _source(source), _dist(dist) {} +        ExactDistanceCheck(Unit* source, float dist) : _source(source), _dist(dist) { }          bool operator()(WorldObject* unit)          { diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp index e3e1bfedc44..9116222a4e0 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp @@ -288,7 +288,7 @@ enum MovementPoints  class FrostwingVrykulSearcher  {      public: -        FrostwingVrykulSearcher(Creature const* source, float range) : _source(source), _range(range) {} +        FrostwingVrykulSearcher(Creature const* source, float range) : _source(source), _range(range) { }          bool operator()(Unit* unit)          { @@ -1833,7 +1833,7 @@ class spell_icc_sprit_alarm : public SpellScriptLoader  class DeathPlagueTargetSelector  {      public: -        explicit DeathPlagueTargetSelector(Unit* caster) : _caster(caster) {} +        explicit DeathPlagueTargetSelector(Unit* caster) : _caster(caster) { }          bool operator()(WorldObject* object) const          { diff --git a/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp b/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp index 928ffd14dea..b873b3ee15c 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp @@ -64,7 +64,7 @@ public:      struct boss_anubrekhanAI : public BossAI      { -        boss_anubrekhanAI(Creature* creature) : BossAI(creature, BOSS_ANUBREKHAN) {} +        boss_anubrekhanAI(Creature* creature) : BossAI(creature, BOSS_ANUBREKHAN) { }          bool hasTaunted; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp index 90f14bf43e4..a5c35650032 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp @@ -145,7 +145,7 @@ float const PosPlatform[4] = {2640.5f, -3360.6f, 285.26f, 0.0f};  // Predicate function to check that the r   efzr unit is NOT on the same side as the source.  struct NotOnSameSide : public std::unary_function<Unit*, bool>  { -    NotOnSameSide(Unit* source) : _onLiveSide(IN_LIVE_SIDE(source)) {} +    NotOnSameSide(Unit* source) : _onLiveSide(IN_LIVE_SIDE(source)) { }      bool operator() (Unit const* target)      { @@ -163,7 +163,7 @@ class boss_gothik : public CreatureScript          struct boss_gothikAI : public BossAI          { -            boss_gothikAI(Creature* creature) : BossAI(creature, BOSS_GOTHIK) {} +            boss_gothikAI(Creature* creature) : BossAI(creature, BOSS_GOTHIK) { }              uint32 waveCount;              typedef std::vector<Creature*> TriggerVct; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp index 14a7a03bd70..a8e2783602f 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp @@ -66,7 +66,7 @@ public:      struct boss_heiganAI : public BossAI      { -        boss_heiganAI(Creature* creature) : BossAI(creature, BOSS_HEIGAN) {} +        boss_heiganAI(Creature* creature) : BossAI(creature, BOSS_HEIGAN) { }          uint32 eruptSection;          bool eruptDirection; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp index a77b21a900b..f9efdfce28b 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp @@ -248,7 +248,7 @@ const Position PosWeavers[MAX_WEAVERS] =  // predicate function to select not charmed target  struct NotCharmedTargetSelector : public std::unary_function<Unit*, bool>  { -    NotCharmedTargetSelector() {} +    NotCharmedTargetSelector() { }      bool operator()(Unit const* target) const      { diff --git a/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp b/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp index 468739894f6..588d58c1436 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp @@ -70,7 +70,7 @@ public:      struct boss_maexxnaAI : public BossAI      { -        boss_maexxnaAI(Creature* creature) : BossAI(creature, BOSS_MAEXXNA) {} +        boss_maexxnaAI(Creature* creature) : BossAI(creature, BOSS_MAEXXNA) { }          bool enraged; @@ -161,7 +161,7 @@ public:      struct npc_webwrapAI : public NullCreatureAI      { -        npc_webwrapAI(Creature* creature) : NullCreatureAI(creature), victimGUID(0) {} +        npc_webwrapAI(Creature* creature) : NullCreatureAI(creature), victimGUID(0) { }          uint64 victimGUID; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp index e01417574bb..d90db5e077e 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp @@ -80,7 +80,7 @@ public:      struct boss_nothAI : public BossAI      { -        boss_nothAI(Creature* creature) : BossAI(creature, BOSS_NOTH) {} +        boss_nothAI(Creature* creature) : BossAI(creature, BOSS_NOTH) { }          uint32 waveCount, balconyCount; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp index bf3e7706f4d..96f2d743cac 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp @@ -62,7 +62,7 @@ public:      struct boss_patchwerkAI : public BossAI      { -        boss_patchwerkAI(Creature* creature) : BossAI(creature, BOSS_PATCHWERK) {} +        boss_patchwerkAI(Creature* creature) : BossAI(creature, BOSS_PATCHWERK) { }          bool Enraged; diff --git a/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp b/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp index 5505b83d411..3ac20df24d6 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp @@ -68,7 +68,7 @@ public:      struct boss_razuviousAI : public BossAI      { -        boss_razuviousAI(Creature* creature) : BossAI(creature, BOSS_RAZUVIOUS) {} +        boss_razuviousAI(Creature* creature) : BossAI(creature, BOSS_RAZUVIOUS) { }          void KilledUnit(Unit* /*victim*/) OVERRIDE          { diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp index 175816e3ae7..26a090f6bcf 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp @@ -54,7 +54,7 @@ public:      struct boss_commander_kolurgAI : public ScriptedAI      { -        boss_commander_kolurgAI(Creature* creature) : ScriptedAI(creature) {} +        boss_commander_kolurgAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp index 2f73c85a9cd..7e81b300773 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp @@ -48,7 +48,7 @@ public:      struct boss_commander_stoutbeardAI : public ScriptedAI      { -        boss_commander_stoutbeardAI(Creature* creature) : ScriptedAI(creature) {} +        boss_commander_stoutbeardAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void AttackStart(Unit* /*who*/) OVERRIDE {} diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp index f26e70d6838..423937303b5 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp @@ -49,7 +49,7 @@ enum Events  class OrmorokTanglerPredicate  {     public: -      OrmorokTanglerPredicate(Unit* unit) : me(unit) {} +      OrmorokTanglerPredicate(Unit* unit) : me(unit) { }      bool operator() (WorldObject* object) const      { @@ -67,7 +67,7 @@ public:      struct boss_ormorokAI : public BossAI      { -        boss_ormorokAI(Creature* creature) : BossAI(creature, DATA_ORMOROK_EVENT) {} +        boss_ormorokAI(Creature* creature) : BossAI(creature, DATA_ORMOROK_EVENT) { }          void EnterCombat(Unit* /*who*/) OVERRIDE          { @@ -188,7 +188,7 @@ public:      struct npc_crystal_spike_triggerAI : public ScriptedAI      { -        npc_crystal_spike_triggerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_crystal_spike_triggerAI(Creature* creature) : ScriptedAI(creature) { }          void IsSummonedBy(Unit* owner) OVERRIDE          { diff --git a/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp b/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp index 4df7109c16c..109106d4d59 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp @@ -40,7 +40,7 @@ public:      struct instance_nexus_InstanceMapScript : public InstanceScript      { -        instance_nexus_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_nexus_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint32 m_auiEncounter[NUMBER_OF_ENCOUNTERS]; diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp index 59652a7d4a1..25091a457f2 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp @@ -62,7 +62,7 @@ public:      struct boss_drakosAI : public BossAI      { -        boss_drakosAI(Creature* creature) : BossAI(creature, DATA_DRAKOS_EVENT) {} +        boss_drakosAI(Creature* creature) : BossAI(creature, DATA_DRAKOS_EVENT) { }          void Reset() OVERRIDE          { @@ -156,7 +156,7 @@ public:      struct npc_unstable_sphereAI : public ScriptedAI      { -        npc_unstable_sphereAI(Creature* creature) : ScriptedAI(creature) {} +        npc_unstable_sphereAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp index 436a978d15e..678748b1f01 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp @@ -99,7 +99,7 @@ public:      struct boss_uromAI : public BossAI      { -        boss_uromAI(Creature* creature) : BossAI(creature, DATA_UROM_EVENT) {} +        boss_uromAI(Creature* creature) : BossAI(creature, DATA_UROM_EVENT) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp index fbf39a705ee..bc72c808a6f 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp @@ -293,7 +293,7 @@ class spell_varos_centrifuge_shield : public SpellScriptLoader  class spell_varos_energize_core_area_enemy : public SpellScriptLoader  {      public: -        spell_varos_energize_core_area_enemy() : SpellScriptLoader("spell_varos_energize_core_area_enemy") {} +        spell_varos_energize_core_area_enemy() : SpellScriptLoader("spell_varos_energize_core_area_enemy") { }          class spell_varos_energize_core_area_enemySpellScript : public SpellScript          { @@ -340,7 +340,7 @@ class spell_varos_energize_core_area_enemy : public SpellScriptLoader  class spell_varos_energize_core_area_entry : public SpellScriptLoader  {      public: -        spell_varos_energize_core_area_entry() : SpellScriptLoader("spell_varos_energize_core_area_entry") {} +        spell_varos_energize_core_area_entry() : SpellScriptLoader("spell_varos_energize_core_area_entry") { }          class spell_varos_energize_core_area_entrySpellScript : public SpellScript          { diff --git a/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp b/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp index 428d24a38ea..70424119a0a 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp @@ -41,7 +41,7 @@ public:      struct instance_oculus_InstanceMapScript : public InstanceScript      { -        instance_oculus_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_oculus_InstanceMapScript(Map* map) : InstanceScript(map) { }          void Initialize() OVERRIDE          { diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp index 8f69d905d6f..aa3c034da6e 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp @@ -295,7 +295,7 @@ class SummonUnleashedDarkMatter : public BasicEvent  class boss_algalon_the_observer : public CreatureScript  {      public: -        boss_algalon_the_observer() : CreatureScript("boss_algalon_the_observer") {} +        boss_algalon_the_observer() : CreatureScript("boss_algalon_the_observer") { }          struct boss_algalon_the_observerAI : public BossAI          { @@ -957,7 +957,7 @@ class npc_brann_bronzebeard_algalon : public CreatureScript  class go_celestial_planetarium_access : public GameObjectScript  {      public: -        go_celestial_planetarium_access() : GameObjectScript("go_celestial_planetarium_access") {} +        go_celestial_planetarium_access() : GameObjectScript("go_celestial_planetarium_access") { }          struct go_celestial_planetarium_accessAI : public GameObjectAI          { diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp index dec27808321..01559c37cfd 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp @@ -680,7 +680,7 @@ class boss_flame_leviathan_defense_turret : public CreatureScript          struct boss_flame_leviathan_defense_turretAI : public TurretAI          { -            boss_flame_leviathan_defense_turretAI(Creature* creature) : TurretAI(creature) {} +            boss_flame_leviathan_defense_turretAI(Creature* creature) : TurretAI(creature) { }              void DamageTaken(Unit* who, uint32 &damage) OVERRIDE              { @@ -1498,7 +1498,7 @@ class spell_auto_repair : public SpellScriptLoader      };      public: -        spell_auto_repair() : SpellScriptLoader("spell_auto_repair") {} +        spell_auto_repair() : SpellScriptLoader("spell_auto_repair") { }          class spell_auto_repair_SpellScript : public SpellScript          { @@ -1607,7 +1607,7 @@ class FlameLeviathanPursuedTargetSelector      };      public: -        explicit FlameLeviathanPursuedTargetSelector(Unit* unit) : _me(unit) {}; +        explicit FlameLeviathanPursuedTargetSelector(Unit* unit) : _me(unit) { };          bool operator()(WorldObject* target) const          { @@ -1645,7 +1645,7 @@ class FlameLeviathanPursuedTargetSelector  class spell_pursue : public SpellScriptLoader  {      public: -        spell_pursue() : SpellScriptLoader("spell_pursue") {} +        spell_pursue() : SpellScriptLoader("spell_pursue") { }          class spell_pursue_SpellScript : public SpellScript          { @@ -1717,7 +1717,7 @@ class spell_pursue : public SpellScriptLoader  class spell_vehicle_throw_passenger : public SpellScriptLoader  {      public: -        spell_vehicle_throw_passenger() : SpellScriptLoader("spell_vehicle_throw_passenger") {} +        spell_vehicle_throw_passenger() : SpellScriptLoader("spell_vehicle_throw_passenger") { }          class spell_vehicle_throw_passenger_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp index dfeeebaae99..ec2cf36822d 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp @@ -361,7 +361,7 @@ class spell_ulduar_rubble_summon : public SpellScriptLoader  class StoneGripTargetSelector : public std::unary_function<Unit*, bool>  {      public: -        StoneGripTargetSelector(Creature* me, Unit const* victim) : _me(me), _victim(victim) {} +        StoneGripTargetSelector(Creature* me, Unit const* victim) : _me(me), _victim(victim) { }          bool operator()(WorldObject* target)          { diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp index fb835b5a4d9..e28e86ade96 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp @@ -307,7 +307,7 @@ class boss_razorscale_controller : public CreatureScript  class go_razorscale_harpoon : public GameObjectScript  {      public: -        go_razorscale_harpoon() : GameObjectScript("go_razorscale_harpoon") {} +        go_razorscale_harpoon() : GameObjectScript("go_razorscale_harpoon") { }          bool OnGossipHello(Player* /*player*/, GameObject* go) OVERRIDE          { diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp index b46a41af678..75aa2994dbc 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp @@ -321,7 +321,7 @@ class npc_vrykul_skeleton : public CreatureScript  class spell_frost_tomb : public SpellScriptLoader  {      public: -        spell_frost_tomb() : SpellScriptLoader("spell_frost_tomb") {} +        spell_frost_tomb() : SpellScriptLoader("spell_frost_tomb") { }          class spell_frost_tomb_AuraScript : public AuraScript          { @@ -352,7 +352,7 @@ class spell_frost_tomb : public SpellScriptLoader  class achievement_on_the_rocks : public AchievementCriteriaScript  {      public: -        achievement_on_the_rocks() : AchievementCriteriaScript("achievement_on_the_rocks") {} +        achievement_on_the_rocks() : AchievementCriteriaScript("achievement_on_the_rocks") { }          bool OnCheck(Player* /*source*/, Unit* target) OVERRIDE          { diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp index ffdd8fe232f..5247f9019da 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp @@ -61,7 +61,7 @@ enum Spells  class SkarvaldChargePredicate  {     public: -      SkarvaldChargePredicate(Unit* unit) : me(unit) {} +      SkarvaldChargePredicate(Unit* unit) : me(unit) { }      bool operator() (WorldObject* object) const      { diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp index 0277c21cb83..4959b3a6b58 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp @@ -47,7 +47,7 @@ public:      struct instance_pinnacle : public InstanceScript      { -        instance_pinnacle(Map* map) : InstanceScript(map) {} +        instance_pinnacle(Map* map) : InstanceScript(map) { }          uint64 uiSvalaSorrowgrave;          uint64 uiGortokPalehoof; diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp index 22174ea2528..e8e54184cb3 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp @@ -128,7 +128,7 @@ class npc_frost_warder : public CreatureScript          struct npc_frost_warderAI : public ScriptedAI          { -            npc_frost_warderAI(Creature* creature) : ScriptedAI(creature) {} +            npc_frost_warderAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp b/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp index 60d7570b96f..4ff0f2d36e9 100644 --- a/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp +++ b/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp @@ -112,7 +112,7 @@ public:      struct instance_violet_hold_InstanceMapScript : public InstanceScript      { -        instance_violet_hold_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_violet_hold_InstanceMapScript(Map* map) : InstanceScript(map) { }          uint64 uiMoragg;          uint64 uiErekem; diff --git a/src/server/scripts/Northrend/isle_of_conquest.cpp b/src/server/scripts/Northrend/isle_of_conquest.cpp index 9efcd8406d7..62173bb2145 100644 --- a/src/server/scripts/Northrend/isle_of_conquest.cpp +++ b/src/server/scripts/Northrend/isle_of_conquest.cpp @@ -27,7 +27,7 @@  class npc_four_car_garage : public CreatureScript  {      public: -        npc_four_car_garage() : CreatureScript("npc_four_car_garage") {} +        npc_four_car_garage() : CreatureScript("npc_four_car_garage") { }          struct npc_four_car_garageAI : public NullCreatureAI          { diff --git a/src/server/scripts/Northrend/zone_borean_tundra.cpp b/src/server/scripts/Northrend/zone_borean_tundra.cpp index 2b5508272d9..935860a6b0c 100644 --- a/src/server/scripts/Northrend/zone_borean_tundra.cpp +++ b/src/server/scripts/Northrend/zone_borean_tundra.cpp @@ -175,7 +175,7 @@ public:      struct npc_khunok_the_behemothAI : public ScriptedAI      { -        npc_khunok_the_behemothAI(Creature* creature) : ScriptedAI(creature) {} +        npc_khunok_the_behemothAI(Creature* creature) : ScriptedAI(creature) { }          void MoveInLineOfSight(Unit* who) OVERRIDE @@ -355,7 +355,7 @@ public:      struct npc_nerubar_victimAI : public ScriptedAI      { -        npc_nerubar_victimAI(Creature* creature) : ScriptedAI(creature) {} +        npc_nerubar_victimAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -411,7 +411,7 @@ public:      struct npc_jennyAI : public ScriptedAI      { -        npc_jennyAI(Creature* creature) : ScriptedAI(creature) {} +        npc_jennyAI(Creature* creature) : ScriptedAI(creature) { }          bool setCrateNumber; @@ -472,7 +472,7 @@ public:      struct npc_fezzix_geartwistAI : public ScriptedAI      { -        npc_fezzix_geartwistAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fezzix_geartwistAI(Creature* creature) : ScriptedAI(creature) { }          void MoveInLineOfSight(Unit* who) OVERRIDE @@ -959,7 +959,7 @@ public:      struct npc_thassarianAI : public npc_escortAI      { -        npc_thassarianAI(Creature* creature) : npc_escortAI(creature) {} +        npc_thassarianAI(Creature* creature) : npc_escortAI(creature) { }          uint64 arthasGUID;          uint64 talbotGUID; @@ -1263,7 +1263,7 @@ public:      struct npc_image_lich_kingAI : public ScriptedAI      { -        npc_image_lich_kingAI(Creature* creature) : ScriptedAI(creature) {} +        npc_image_lich_kingAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1298,7 +1298,7 @@ public:      struct npc_general_arlosAI : public ScriptedAI      { -        npc_general_arlosAI(Creature* creature) : ScriptedAI(creature) {} +        npc_general_arlosAI(Creature* creature) : ScriptedAI(creature) { }          void MovementInform(uint32 uiType, uint32 /*uiId*/) OVERRIDE          { @@ -1587,7 +1587,7 @@ public:      struct npc_beryl_sorcererAI : public FollowerAI      { -        npc_beryl_sorcererAI(Creature* creature) : FollowerAI(creature) {} +        npc_beryl_sorcererAI(Creature* creature) : FollowerAI(creature) { }          bool bEnslaved; @@ -1672,7 +1672,7 @@ public:      struct npc_imprisoned_beryl_sorcererAI : public ScriptedAI      { -        npc_imprisoned_beryl_sorcererAI(Creature* creature) : ScriptedAI(creature) {} +        npc_imprisoned_beryl_sorcererAI(Creature* creature) : ScriptedAI(creature) { }          uint32 rebuff; @@ -1799,7 +1799,7 @@ public:      struct npc_mootoo_the_youngerAI : public npc_escortAI      { -        npc_mootoo_the_youngerAI(Creature* creature) : npc_escortAI(creature) {} +        npc_mootoo_the_youngerAI(Creature* creature) : npc_escortAI(creature) { }          void Reset() OVERRIDE          { @@ -1880,7 +1880,7 @@ public:      struct npc_bonker_togglevoltAI : public npc_escortAI      { -        npc_bonker_togglevoltAI(Creature* creature) : npc_escortAI(creature) {} +        npc_bonker_togglevoltAI(Creature* creature) : npc_escortAI(creature) { }          uint32 Bonker_agro;          void Reset() OVERRIDE @@ -1978,7 +1978,7 @@ public:      struct npc_trapped_mammoth_calfAI : public ScriptedAI      { -        npc_trapped_mammoth_calfAI(Creature* creature) : ScriptedAI(creature) {} +        npc_trapped_mammoth_calfAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiTimer;          bool bStarted; @@ -2067,7 +2067,7 @@ public:      struct npc_magmoth_crusherAI : public ScriptedAI      { -        npc_magmoth_crusherAI(Creature* creature) : ScriptedAI(creature) {} +        npc_magmoth_crusherAI(Creature* creature) : ScriptedAI(creature) { }          void JustDied(Unit* killer) OVERRIDE          { @@ -2168,7 +2168,7 @@ public:      struct npc_valiance_keep_cannoneerAI : public ScriptedAI      { -        npc_valiance_keep_cannoneerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_valiance_keep_cannoneerAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiTimer; @@ -2226,7 +2226,7 @@ public:      struct npc_warmage_coldarraAI : public ScriptedAI      { -        npc_warmage_coldarraAI(Creature* creature) : ScriptedAI(creature) {} +        npc_warmage_coldarraAI(Creature* creature) : ScriptedAI(creature) { }          uint32 m_uiTimer;                 //Timer until recast diff --git a/src/server/scripts/Northrend/zone_grizzly_hills.cpp b/src/server/scripts/Northrend/zone_grizzly_hills.cpp index 1a080824136..d942f05e5b0 100644 --- a/src/server/scripts/Northrend/zone_grizzly_hills.cpp +++ b/src/server/scripts/Northrend/zone_grizzly_hills.cpp @@ -217,7 +217,7 @@ public:      struct npc_mrfloppyAI : public ScriptedAI      { -        npc_mrfloppyAI(Creature* creature) : ScriptedAI(creature) {} +        npc_mrfloppyAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -279,7 +279,7 @@ public:      struct npc_outhouse_bunnyAI : public ScriptedAI      { -        npc_outhouse_bunnyAI(Creature* creature) : ScriptedAI(creature) {} +        npc_outhouse_bunnyAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -341,7 +341,7 @@ public:      struct npc_tallhorn_stagAI : public ScriptedAI      { -        npc_tallhorn_stagAI(Creature* creature) : ScriptedAI(creature) {} +        npc_tallhorn_stagAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -393,7 +393,7 @@ public:      struct npc_amberpine_woodsmanAI : public ScriptedAI      { -        npc_amberpine_woodsmanAI(Creature* creature) : ScriptedAI(creature) {} +        npc_amberpine_woodsmanAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -459,7 +459,7 @@ public:      struct npc_wounded_skirmisherAI : public ScriptedAI      { -        npc_wounded_skirmisherAI(Creature* creature) : ScriptedAI(creature) {} +        npc_wounded_skirmisherAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Northrend/zone_icecrown.cpp b/src/server/scripts/Northrend/zone_icecrown.cpp index 24452a5fb5f..814503498f0 100644 --- a/src/server/scripts/Northrend/zone_icecrown.cpp +++ b/src/server/scripts/Northrend/zone_icecrown.cpp @@ -306,7 +306,7 @@ public:      struct npc_vereth_the_cunningAI : public ScriptedAI      { -        npc_vereth_the_cunningAI(Creature* creature) : ScriptedAI(creature) {} +        npc_vereth_the_cunningAI(Creature* creature) : ScriptedAI(creature) { }          void MoveInLineOfSight(Unit* who) OVERRIDE diff --git a/src/server/scripts/Northrend/zone_sholazar_basin.cpp b/src/server/scripts/Northrend/zone_sholazar_basin.cpp index bf284c5138b..a9998d1a708 100644 --- a/src/server/scripts/Northrend/zone_sholazar_basin.cpp +++ b/src/server/scripts/Northrend/zone_sholazar_basin.cpp @@ -502,7 +502,7 @@ public:      struct npc_jungle_punch_targetAI : public ScriptedAI      { -        npc_jungle_punch_targetAI(Creature* creature) : ScriptedAI(creature) {} +        npc_jungle_punch_targetAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1016,7 +1016,7 @@ public:      struct npc_vics_flying_machineAI : public VehicleAI      { -        npc_vics_flying_machineAI(Creature* creature) : VehicleAI(creature) {} +        npc_vics_flying_machineAI(Creature* creature) : VehicleAI(creature) { }          void PassengerBoarded(Unit* passenger, int8 /*seatId*/, bool apply) OVERRIDE          { diff --git a/src/server/scripts/Northrend/zone_storm_peaks.cpp b/src/server/scripts/Northrend/zone_storm_peaks.cpp index 1fc0cce51b4..9d37087e505 100644 --- a/src/server/scripts/Northrend/zone_storm_peaks.cpp +++ b/src/server/scripts/Northrend/zone_storm_peaks.cpp @@ -178,7 +178,7 @@ public:      struct npc_brunnhildar_prisonerAI : public ScriptedAI      { -        npc_brunnhildar_prisonerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_brunnhildar_prisonerAI(Creature* creature) : ScriptedAI(creature) { }          bool freed; @@ -250,7 +250,7 @@ public:      struct npc_freed_protodrakeAI : public VehicleAI      { -        npc_freed_protodrakeAI(Creature* creature) : VehicleAI(creature) {} +        npc_freed_protodrakeAI(Creature* creature) : VehicleAI(creature) { }          EventMap events; @@ -323,7 +323,7 @@ public:      struct npc_icefangAI : public npc_escortAI      { -        npc_icefangAI(Creature* creature) : npc_escortAI(creature) {} +        npc_icefangAI(Creature* creature) : npc_escortAI(creature) { }          void AttackStart(Unit* /*who*/) OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -378,7 +378,7 @@ class npc_hyldsmeet_protodrake : public CreatureScript          class npc_hyldsmeet_protodrakeAI : public CreatureAI          {              public: -                npc_hyldsmeet_protodrakeAI(Creature* creature) : CreatureAI(creature), _accessoryRespawnTimer(0), _vehicleKit(creature->GetVehicleKit()) {} +                npc_hyldsmeet_protodrakeAI(Creature* creature) : CreatureAI(creature), _accessoryRespawnTimer(0), _vehicleKit(creature->GetVehicleKit()) { }                  void PassengerBoarded(Unit* who, int8 /*seat*/, bool apply) OVERRIDE                  { diff --git a/src/server/scripts/Northrend/zone_zuldrak.cpp b/src/server/scripts/Northrend/zone_zuldrak.cpp index 3a2d5c592fe..d43ec59f817 100644 --- a/src/server/scripts/Northrend/zone_zuldrak.cpp +++ b/src/server/scripts/Northrend/zone_zuldrak.cpp @@ -47,7 +47,7 @@ public:      struct npc_drakuru_shacklesAI : public ScriptedAI      { -        npc_drakuru_shacklesAI(Creature* creature) : ScriptedAI(creature) {} +        npc_drakuru_shacklesAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -133,7 +133,7 @@ public:      struct npc_captured_rageclawAI : public ScriptedAI      { -        npc_captured_rageclawAI(Creature* creature) : ScriptedAI(creature) {} +        npc_captured_rageclawAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -267,7 +267,7 @@ public:      struct npc_gurgthockAI : public ScriptedAI      { -        npc_gurgthockAI(Creature* creature) : ScriptedAI(creature) {} +        npc_gurgthockAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -726,7 +726,7 @@ public:      struct npc_yggdrasAI : public ScriptedAI      { -        npc_yggdrasAI(Creature* creature) : ScriptedAI(creature) {} +        npc_yggdrasAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -943,7 +943,7 @@ public:      struct npc_elemental_lordAI : public ScriptedAI      { -        npc_elemental_lordAI(Creature* creature) : ScriptedAI(creature) {} +        npc_elemental_lordAI(Creature* creature) : ScriptedAI(creature) { }          std::list<uint64> SummonList; @@ -1088,7 +1088,7 @@ public:      struct npc_fiend_elementalAI : public ScriptedAI      { -        npc_fiend_elementalAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fiend_elementalAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1154,7 +1154,7 @@ public:      struct npc_released_offspring_harkoaAI : public ScriptedAI      { -        npc_released_offspring_harkoaAI(Creature* creature) : ScriptedAI(creature) {} +        npc_released_offspring_harkoaAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1200,7 +1200,7 @@ public:      struct npc_crusade_recruitAI : public ScriptedAI      { -        npc_crusade_recruitAI(Creature* creature) : ScriptedAI(creature) {} +        npc_crusade_recruitAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1831,7 +1831,7 @@ public:      struct npc_storm_cloudAI : public ScriptedAI      { -        npc_storm_cloudAI(Creature* creature) : ScriptedAI(creature) {} +        npc_storm_cloudAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h index 60dce43bc42..d6743428db0 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h @@ -205,7 +205,7 @@ class OPvPCapturePointZM_GraveYard : public OPvPCapturePoint          bool Update(uint32 diff); -        void ChangeState() {} +        void ChangeState() { }          void FillInitialWorldStates(WorldPacket & data); diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp index 9735011ba81..4f7ac113547 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp @@ -61,7 +61,7 @@ public:      struct npc_stolen_soulAI : public ScriptedAI      { -        npc_stolen_soulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_stolen_soulAI(Creature* creature) : ScriptedAI(creature) { }          uint8 myClass;          uint32 Class_Timer; @@ -314,7 +314,7 @@ public:      struct npc_avatar_of_martyredAI : public ScriptedAI      { -        npc_avatar_of_martyredAI(Creature* creature) : ScriptedAI(creature) {} +        npc_avatar_of_martyredAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Mortal_Strike_timer; diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp index 83c0cbf04d5..4083d6edc0e 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp @@ -331,7 +331,7 @@ public:      struct npc_ethereal_apprenticeAI : public ScriptedAI      { -        npc_ethereal_apprenticeAI(Creature* creature) : ScriptedAI(creature) {} +        npc_ethereal_apprenticeAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Cast_Timer; @@ -378,7 +378,7 @@ public:      struct npc_yorAI : public ScriptedAI      { -        npc_yorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_yorAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} diff --git a/src/server/scripts/Outland/BlackTemple/black_temple.cpp b/src/server/scripts/Outland/BlackTemple/black_temple.cpp index a44c5f58dc4..57c494756e5 100644 --- a/src/server/scripts/Outland/BlackTemple/black_temple.cpp +++ b/src/server/scripts/Outland/BlackTemple/black_temple.cpp @@ -63,7 +63,7 @@ public:      struct npc_spirit_of_olumAI : public ScriptedAI      { -        npc_spirit_of_olumAI(Creature* creature) : ScriptedAI(creature) {} +        npc_spirit_of_olumAI(Creature* creature) : ScriptedAI(creature) { }          void sGossipSelect(Player* player, uint32 /*sender*/, uint32 action) OVERRIDE          { diff --git a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp index 279a846140c..aceb664cb3d 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp @@ -377,7 +377,7 @@ public:      struct flame_of_azzinothAI : public ScriptedAI      { -        flame_of_azzinothAI(Creature* creature) : ScriptedAI(creature) {} +        flame_of_azzinothAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1140,7 +1140,7 @@ public:      struct boss_maievAI : public ScriptedAI      { -        boss_maievAI(Creature* creature) : ScriptedAI(creature) {}; +        boss_maievAI(Creature* creature) : ScriptedAI(creature) { };          void Reset() OVERRIDE          { @@ -1976,7 +1976,7 @@ public:      struct cage_trap_triggerAI : public ScriptedAI      { -        cage_trap_triggerAI(Creature* creature) : ScriptedAI(creature) {} +        cage_trap_triggerAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -2074,7 +2074,7 @@ public:      struct shadow_demonAI : public ScriptedAI      { -        shadow_demonAI(Creature* creature) : ScriptedAI(creature) {} +        shadow_demonAI(Creature* creature) : ScriptedAI(creature) { }          void EnterCombat(Unit* /*who*/) OVERRIDE          { @@ -2130,7 +2130,7 @@ public:      struct blade_of_azzinothAI : public NullCreatureAI      { -        blade_of_azzinothAI(Creature* creature) : NullCreatureAI(creature) {} +        blade_of_azzinothAI(Creature* creature) : NullCreatureAI(creature) { }          void SpellHit(Unit* /*caster*/, const SpellInfo* spell) OVERRIDE          { diff --git a/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp b/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp index ab3bc98b41b..ad913a45071 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp @@ -111,7 +111,7 @@ public:      struct npc_enslaved_soulAI : public ScriptedAI      { -        npc_enslaved_soulAI(Creature* creature) : ScriptedAI(creature) {} +        npc_enslaved_soulAI(Creature* creature) : ScriptedAI(creature) { }          uint64 ReliquaryGUID; @@ -393,7 +393,7 @@ public:      struct boss_essence_of_sufferingAI : public ScriptedAI      { -        boss_essence_of_sufferingAI(Creature* creature) : ScriptedAI(creature) {} +        boss_essence_of_sufferingAI(Creature* creature) : ScriptedAI(creature) { }          uint64 StatAuraGUID; @@ -516,7 +516,7 @@ public:      struct boss_essence_of_desireAI : public ScriptedAI      { -        boss_essence_of_desireAI(Creature* creature) : ScriptedAI(creature) {} +        boss_essence_of_desireAI(Creature* creature) : ScriptedAI(creature) { }          uint32 RuneShieldTimer;          uint32 DeadenTimer; @@ -619,7 +619,7 @@ public:      struct boss_essence_of_angerAI : public ScriptedAI      { -        boss_essence_of_angerAI(Creature* creature) : ScriptedAI(creature) {} +        boss_essence_of_angerAI(Creature* creature) : ScriptedAI(creature) { }          uint64 AggroTargetGUID; diff --git a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp index 94423f87bdf..06adfe524cb 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp @@ -70,7 +70,7 @@ public:      struct molten_flameAI : public NullCreatureAI      { -        molten_flameAI(Creature* creature) : NullCreatureAI(creature) {} +        molten_flameAI(Creature* creature) : NullCreatureAI(creature) { }          void InitializeAI() OVERRIDE          { diff --git a/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp b/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp index c02954c7b2f..68873312d35 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp @@ -63,7 +63,7 @@ public:      struct npc_doom_blossomAI : public ScriptedAI      { -        npc_doom_blossomAI(Creature* creature) : ScriptedAI(creature) {} +        npc_doom_blossomAI(Creature* creature) : ScriptedAI(creature) { }          uint32 CheckTeronTimer;          uint32 ShadowBoltTimer; @@ -132,7 +132,7 @@ public:      struct npc_shadowy_constructAI : public ScriptedAI      { -        npc_shadowy_constructAI(Creature* creature) : ScriptedAI(creature) {} +        npc_shadowy_constructAI(Creature* creature) : ScriptedAI(creature) { }          uint64 GhostGUID;          uint64 TeronGUID; diff --git a/src/server/scripts/Outland/BlackTemple/illidari_council.cpp b/src/server/scripts/Outland/BlackTemple/illidari_council.cpp index 05d19eb62bf..b2569a582ad 100644 --- a/src/server/scripts/Outland/BlackTemple/illidari_council.cpp +++ b/src/server/scripts/Outland/BlackTemple/illidari_council.cpp @@ -481,7 +481,7 @@ public:      struct boss_gathios_the_shattererAI : public boss_illidari_councilAI      { -        boss_gathios_the_shattererAI(Creature* creature) : boss_illidari_councilAI(creature) {} +        boss_gathios_the_shattererAI(Creature* creature) : boss_illidari_councilAI(creature) { }          uint32 ConsecrationTimer;          uint32 HammerOfJusticeTimer; @@ -613,7 +613,7 @@ public:      struct boss_high_nethermancer_zerevorAI : public boss_illidari_councilAI      { -        boss_high_nethermancer_zerevorAI(Creature* creature) : boss_illidari_councilAI(creature) {} +        boss_high_nethermancer_zerevorAI(Creature* creature) : boss_illidari_councilAI(creature) { }          uint32 BlizzardTimer;          uint32 FlamestrikeTimer; @@ -717,7 +717,7 @@ public:      struct boss_lady_malandeAI : public boss_illidari_councilAI      { -        boss_lady_malandeAI(Creature* creature) : boss_illidari_councilAI(creature) {} +        boss_lady_malandeAI(Creature* creature) : boss_illidari_councilAI(creature) { }          uint32 EmpoweredSmiteTimer;          uint32 CircleOfHealingTimer; @@ -795,7 +795,7 @@ public:      struct boss_veras_darkshadowAI : public boss_illidari_councilAI      { -        boss_veras_darkshadowAI(Creature* creature) : boss_illidari_councilAI(creature) {} +        boss_veras_darkshadowAI(Creature* creature) : boss_illidari_councilAI(creature) { }          uint64 EnvenomTargetGUID; diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp index a87ad44ef1c..308397eecc7 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp @@ -609,7 +609,7 @@ public:      struct boss_leotheras_the_blind_demonformAI : public ScriptedAI      { -        boss_leotheras_the_blind_demonformAI(Creature* creature) : ScriptedAI(creature) {} +        boss_leotheras_the_blind_demonformAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ChaosBlast_Timer;          bool DealDamage; diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp index cd56005b3f6..0393379d26a 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp @@ -429,7 +429,7 @@ public:  class go_strange_pool : public GameObjectScript  {      public: -        go_strange_pool() : GameObjectScript("go_strange_pool") {} +        go_strange_pool() : GameObjectScript("go_strange_pool") { }          bool OnGossipHello(Player* player, GameObject* go) OVERRIDE          { diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp index e0469dbfbfb..cbab7f0caf0 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp @@ -299,7 +299,7 @@ public:      struct npc_water_globuleAI : public ScriptedAI      { -        npc_water_globuleAI(Creature* creature) : ScriptedAI(creature) {} +        npc_water_globuleAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Check_Timer; diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp index 50e9ffee196..05c8e3f7f64 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp @@ -146,7 +146,7 @@ public:      struct npc_coilfang_waterelementalAI : public ScriptedAI      { -        npc_coilfang_waterelementalAI(Creature* creature) : ScriptedAI(creature) {} +        npc_coilfang_waterelementalAI(Creature* creature) : ScriptedAI(creature) { }          uint32 WaterBoltVolley_Timer; diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp index 3475e83f02c..cd11e2e1bf1 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp @@ -37,7 +37,7 @@ public:      struct instance_the_slave_pens_InstanceMapScript : public InstanceScript      { -        instance_the_slave_pens_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_the_slave_pens_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp index 0db48d83ebb..825c7173b18 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp @@ -116,7 +116,7 @@ public:      struct npc_underbog_mushroomAI : public ScriptedAI      { -        npc_underbog_mushroomAI(Creature* creature) : ScriptedAI(creature) {} +        npc_underbog_mushroomAI(Creature* creature) : ScriptedAI(creature) { }          bool Stop;          uint32 Grow_Timer; diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp index 0a305edf23f..08d80d3dd82 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp @@ -37,7 +37,7 @@ public:      struct instance_the_underbog_InstanceMapScript : public InstanceScript      { -        instance_the_underbog_InstanceMapScript(Map* map) : InstanceScript(map) {} +        instance_the_underbog_InstanceMapScript(Map* map) : InstanceScript(map) { }      };  }; diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp index 2f5e160b335..be4cac80adb 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp @@ -161,7 +161,7 @@ class boss_broggok : public CreatureScript  class go_broggok_lever : public GameObjectScript  {      public: -        go_broggok_lever() : GameObjectScript("go_broggok_lever") {} +        go_broggok_lever() : GameObjectScript("go_broggok_lever") { }          bool OnGossipHello(Player* /*player*/, GameObject* go) OVERRIDE          { diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp index fedf56eb929..cb37e3c5070 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp @@ -296,7 +296,7 @@ class npc_shadowmoon_channeler : public CreatureScript  {      public: -        npc_shadowmoon_channeler() : CreatureScript("npc_shadowmoon_channeler") {} +        npc_shadowmoon_channeler() : CreatureScript("npc_shadowmoon_channeler") { }          struct npc_shadowmoon_channelerAI : public ScriptedAI          { diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp index 8b233901608..b8edd55a3ed 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp @@ -36,11 +36,11 @@ class instance_blood_furnace : public InstanceMapScript  {      public:          instance_blood_furnace() -            : InstanceMapScript("instance_blood_furnace", 542) {} +            : InstanceMapScript("instance_blood_furnace", 542) { }          struct instance_blood_furnace_InstanceMapScript : public InstanceScript          { -            instance_blood_furnace_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_blood_furnace_InstanceMapScript(Map* map) : InstanceScript(map) { }              uint64 The_MakerGUID;              uint64 BroggokGUID; diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp index a4007a5a7b1..ab31ef476f9 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp @@ -456,7 +456,7 @@ class npc_hellfire_sentry : public CreatureScript          struct npc_hellfire_sentryAI : public ScriptedAI          { -            npc_hellfire_sentryAI(Creature* creature) : ScriptedAI(creature) {} +            npc_hellfire_sentryAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp index 260cdf0e2e6..0c8df4c01e7 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp @@ -34,7 +34,7 @@ class instance_ramparts : public InstanceMapScript          struct instance_ramparts_InstanceMapScript : public InstanceScript          { -            instance_ramparts_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_ramparts_InstanceMapScript(Map* map) : InstanceScript(map) { }              void Initialize() OVERRIDE              { diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp index 0dbd21ff94a..0fa642b66cf 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp @@ -384,7 +384,7 @@ class npc_lesser_shadow_fissure : public CreatureScript          struct npc_lesser_shadow_fissureAI : public ScriptedAI          { -            npc_lesser_shadow_fissureAI(Creature* creature) : ScriptedAI(creature) {} +            npc_lesser_shadow_fissureAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE {}              void MoveInLineOfSight(Unit* /*who*/) OVERRIDE {} diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp index 8b2cce69dc7..59638a6f80f 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp @@ -539,7 +539,7 @@ class npc_flame_patch_alar : public CreatureScript          struct npc_flame_patch_alarAI : public ScriptedAI          { -            npc_flame_patch_alarAI(Creature* creature) : ScriptedAI(creature) {} +            npc_flame_patch_alarAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE {}              void EnterCombat(Unit* /*who*/) OVERRIDE {}              void AttackStart(Unit* /*who*/) OVERRIDE {} diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp index cf25efb17c6..984844c3fa7 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp @@ -1026,7 +1026,7 @@ class boss_thaladred_the_darkener : public CreatureScript          }          struct boss_thaladred_the_darkenerAI : public advisorbase_ai          { -            boss_thaladred_the_darkenerAI(Creature* creature) : advisorbase_ai(creature) {} +            boss_thaladred_the_darkenerAI(Creature* creature) : advisorbase_ai(creature) { }              uint32 Gaze_Timer;              uint32 Silence_Timer; @@ -1124,7 +1124,7 @@ class boss_lord_sanguinar : public CreatureScript          }          struct boss_lord_sanguinarAI : public advisorbase_ai          { -            boss_lord_sanguinarAI(Creature* creature) : advisorbase_ai(creature) {} +            boss_lord_sanguinarAI(Creature* creature) : advisorbase_ai(creature) { }              uint32 Fear_Timer; @@ -1191,7 +1191,7 @@ class boss_grand_astromancer_capernian : public CreatureScript          }          struct boss_grand_astromancer_capernianAI : public advisorbase_ai          { -            boss_grand_astromancer_capernianAI(Creature* creature) : advisorbase_ai(creature) {} +            boss_grand_astromancer_capernianAI(Creature* creature) : advisorbase_ai(creature) { }              uint32 Fireball_Timer;              uint32 Conflagration_Timer; @@ -1336,7 +1336,7 @@ class boss_master_engineer_telonicus : public CreatureScript          }          struct boss_master_engineer_telonicusAI : public advisorbase_ai          { -            boss_master_engineer_telonicusAI(Creature* creature) : advisorbase_ai(creature) {} +            boss_master_engineer_telonicusAI(Creature* creature) : advisorbase_ai(creature) { }              uint32 Bomb_Timer;              uint32 RemoteToy_Timer; @@ -1487,7 +1487,7 @@ class npc_phoenix_tk : public CreatureScript          }          struct npc_phoenix_tkAI : public ScriptedAI          { -            npc_phoenix_tkAI(Creature* creature) : ScriptedAI(creature) {} +            npc_phoenix_tkAI(Creature* creature) : ScriptedAI(creature) { }              uint32 Cycle_Timer; @@ -1541,7 +1541,7 @@ class npc_phoenix_egg_tk : public CreatureScript          }          struct npc_phoenix_egg_tkAI : public ScriptedAI          { -            npc_phoenix_egg_tkAI(Creature* creature) : ScriptedAI(creature) {} +            npc_phoenix_egg_tkAI(Creature* creature) : ScriptedAI(creature) { }              uint32 Rebirth_Timer; diff --git a/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp b/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp index 9995efee99a..f5f75d79b63 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp @@ -46,7 +46,7 @@ class instance_the_eye : public InstanceMapScript          struct instance_the_eye_InstanceMapScript : public InstanceScript          { -            instance_the_eye_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_the_eye_InstanceMapScript(Map* map) : InstanceScript(map) { }              uint64 ThaladredTheDarkener;              uint64 LordSanguinar; diff --git a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp index ab9b6ab3046..e8d52c3f819 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp @@ -47,7 +47,7 @@ class npc_crystalcore_devastator : public CreatureScript          }          struct npc_crystalcore_devastatorAI : public ScriptedAI          { -            npc_crystalcore_devastatorAI(Creature* creature) : ScriptedAI(creature) {} +            npc_crystalcore_devastatorAI(Creature* creature) : ScriptedAI(creature) { }              uint32 Knockaway_Timer;              uint32 Countercharge_Timer; diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp index a2c6ba399a3..97a165453f8 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp @@ -53,11 +53,11 @@ enum Events  class boss_gatewatcher_gyrokill : public CreatureScript  {      public: -        boss_gatewatcher_gyrokill() : CreatureScript("boss_gatewatcher_gyrokill") {} +        boss_gatewatcher_gyrokill() : CreatureScript("boss_gatewatcher_gyrokill") { }          struct boss_gatewatcher_gyrokillAI : public BossAI          { -            boss_gatewatcher_gyrokillAI(Creature* creature) : BossAI(creature, DATA_GATEWATCHER_GYROKILL) {} +            boss_gatewatcher_gyrokillAI(Creature* creature) : BossAI(creature, DATA_GATEWATCHER_GYROKILL) { }              void JustDied(Unit* /*killer*/) OVERRIDE              { diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp index 7dc073d82d7..6a4de059eb7 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp @@ -56,11 +56,11 @@ enum Events  class boss_gatewatcher_iron_hand : public CreatureScript  {      public: -        boss_gatewatcher_iron_hand(): CreatureScript("boss_gatewatcher_iron_hand") {} +        boss_gatewatcher_iron_hand(): CreatureScript("boss_gatewatcher_iron_hand") { }          struct boss_gatewatcher_iron_handAI : public BossAI          { -            boss_gatewatcher_iron_handAI(Creature* creature) : BossAI(creature, DATA_GATEWATCHER_IRON_HAND) {} +            boss_gatewatcher_iron_handAI(Creature* creature) : BossAI(creature, DATA_GATEWATCHER_IRON_HAND) { }              void EnterCombat(Unit* /*who*/) OVERRIDE              { diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp index 565aefbd6b9..b5172245b49 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp @@ -61,11 +61,11 @@ enum Events  class boss_nethermancer_sepethrea : public CreatureScript  { -    public: boss_nethermancer_sepethrea(): CreatureScript("boss_nethermancer_sepethrea") {} +    public: boss_nethermancer_sepethrea(): CreatureScript("boss_nethermancer_sepethrea") { }          struct boss_nethermancer_sepethreaAI : public BossAI          { -            boss_nethermancer_sepethreaAI(Creature* creature) : BossAI(creature, DATA_NETHERMANCER_SEPRETHREA) {} +            boss_nethermancer_sepethreaAI(Creature* creature) : BossAI(creature, DATA_NETHERMANCER_SEPRETHREA) { }              void EnterCombat(Unit* who) OVERRIDE              { diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp index 1bcdcd48fce..822f8f1d486 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp @@ -69,7 +69,7 @@ enum Creatures  class boss_pathaleon_the_calculator : public CreatureScript  {      public: -        boss_pathaleon_the_calculator(): CreatureScript("boss_pathaleon_the_calculator") {} +        boss_pathaleon_the_calculator(): CreatureScript("boss_pathaleon_the_calculator") { }          struct boss_pathaleon_the_calculatorAI : public BossAI          { @@ -172,7 +172,7 @@ class npc_nether_wraith : public CreatureScript          struct npc_nether_wraithAI : public ScriptedAI          { -            npc_nether_wraithAI(Creature* creature) : ScriptedAI(creature) {} +            npc_nether_wraithAI(Creature* creature) : ScriptedAI(creature) { }              uint32 ArcaneMissiles_Timer;              uint32 Detonation_Timer; diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp index f03cb033b0f..58b1df439ee 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp @@ -539,7 +539,7 @@ class npc_zerekethvoidzone : public CreatureScript          }          struct npc_zerekethvoidzoneAI : public ScriptedAI          { -            npc_zerekethvoidzoneAI(Creature* creature) : ScriptedAI(creature) {} +            npc_zerekethvoidzoneAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE              { diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp index c7765eb24ad..c4daa3d14a9 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp @@ -289,7 +289,7 @@ class boss_harbinger_skyriss_illusion : public CreatureScript          }          struct boss_harbinger_skyriss_illusionAI : public ScriptedAI          { -            boss_harbinger_skyriss_illusionAI(Creature* creature) : ScriptedAI(creature) {} +            boss_harbinger_skyriss_illusionAI(Creature* creature) : ScriptedAI(creature) { }              void Reset() OVERRIDE {} diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp index 41b87495c93..e836c5c4bf9 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp @@ -60,7 +60,7 @@ class instance_arcatraz : public InstanceMapScript          }          struct instance_arcatraz_InstanceMapScript : public InstanceScript          { -            instance_arcatraz_InstanceMapScript(Map* map) : InstanceScript(map) {} +            instance_arcatraz_InstanceMapScript(Map* map) : InstanceScript(map) { }              uint32 m_auiEncounter[MAX_ENCOUNTER]; diff --git a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp index 57eb587140f..f5a904d58c6 100644 --- a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp +++ b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp @@ -67,7 +67,7 @@ public:      struct npc_bladespire_ogreAI : public ScriptedAI      { -        npc_bladespire_ogreAI(Creature* creature) : ScriptedAI(creature) {} +        npc_bladespire_ogreAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -119,7 +119,7 @@ public:      struct npc_nether_drakeAI : public ScriptedAI      { -        npc_nether_drakeAI(Creature* creature) : ScriptedAI(creature) {} +        npc_nether_drakeAI(Creature* creature) : ScriptedAI(creature) { }          bool IsNihil;          uint32 NihilSpeech_Timer; @@ -284,7 +284,7 @@ public:      struct npc_daranelleAI : public ScriptedAI      { -        npc_daranelleAI(Creature* creature) : ScriptedAI(creature) {} +        npc_daranelleAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -490,7 +490,7 @@ public:      struct npc_ogre_bruteAI : public ScriptedAI      { -        npc_ogre_bruteAI(Creature* creature) : ScriptedAI(creature) {} +        npc_ogre_bruteAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID; diff --git a/src/server/scripts/Outland/zone_hellfire_peninsula.cpp b/src/server/scripts/Outland/zone_hellfire_peninsula.cpp index fc7f4d2ae00..dd13cdf1fc9 100644 --- a/src/server/scripts/Outland/zone_hellfire_peninsula.cpp +++ b/src/server/scripts/Outland/zone_hellfire_peninsula.cpp @@ -68,7 +68,7 @@ public:      struct npc_aeranasAI : public ScriptedAI      { -        npc_aeranasAI(Creature* creature) : ScriptedAI(creature) {} +        npc_aeranasAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Faction_Timer;          uint32 EnvelopingWinds_Timer; @@ -388,7 +388,7 @@ public:      struct npc_wounded_blood_elfAI : public npc_escortAI      { -        npc_wounded_blood_elfAI(Creature* creature) : npc_escortAI(creature) {} +        npc_wounded_blood_elfAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -462,7 +462,7 @@ public:      struct npc_fel_guard_houndAI : public ScriptedAI      { -        npc_fel_guard_houndAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fel_guard_houndAI(Creature* creature) : ScriptedAI(creature) { }          uint32 uiCheckTimer;          uint64 uiHelboarGUID; diff --git a/src/server/scripts/Outland/zone_nagrand.cpp b/src/server/scripts/Outland/zone_nagrand.cpp index 1d5e1b8b6a5..1caddd24efa 100644 --- a/src/server/scripts/Outland/zone_nagrand.cpp +++ b/src/server/scripts/Outland/zone_nagrand.cpp @@ -328,7 +328,7 @@ public:      struct npc_creditmarker_visit_with_ancestorsAI : public ScriptedAI      { -        npc_creditmarker_visit_with_ancestorsAI(Creature* creature) : ScriptedAI(creature) {} +        npc_creditmarker_visit_with_ancestorsAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -433,7 +433,7 @@ public:    struct npc_corkiAI : public ScriptedAI    { -      npc_corkiAI(Creature* creature) : ScriptedAI(creature) {} +      npc_corkiAI(Creature* creature) : ScriptedAI(creature) { }        uint32 Say_Timer;        bool ReleasedFromCage; diff --git a/src/server/scripts/Outland/zone_netherstorm.cpp b/src/server/scripts/Outland/zone_netherstorm.cpp index 7c328f57e78..7bb77644d0b 100644 --- a/src/server/scripts/Outland/zone_netherstorm.cpp +++ b/src/server/scripts/Outland/zone_netherstorm.cpp @@ -81,7 +81,7 @@ public:      struct npc_manaforge_control_consoleAI : public ScriptedAI      { -        npc_manaforge_control_consoleAI(Creature* creature) : ScriptedAI(creature) {} +        npc_manaforge_control_consoleAI(Creature* creature) : ScriptedAI(creature) { }          uint32 Event_Timer;          uint32 Wave_Timer; @@ -746,7 +746,7 @@ public:      struct npc_phase_hunterAI : public ScriptedAI      { -        npc_phase_hunterAI(Creature* creature) : ScriptedAI(creature) {} +        npc_phase_hunterAI(Creature* creature) : ScriptedAI(creature) { }          bool Weak;          bool Materialize; @@ -882,7 +882,7 @@ public:      struct npc_bessyAI : public npc_escortAI      { -        npc_bessyAI(Creature* creature) : npc_escortAI(creature) {} +        npc_bessyAI(Creature* creature) : npc_escortAI(creature) { }          void JustDied(Unit* /*killer*/) OVERRIDE          { @@ -953,7 +953,7 @@ public:      struct npc_maxx_a_million_escortAI : public npc_escortAI      { -        npc_maxx_a_million_escortAI(Creature* creature) : npc_escortAI(creature) {} +        npc_maxx_a_million_escortAI(Creature* creature) : npc_escortAI(creature) { }          bool bTake;          uint32 uiTakeTimer; diff --git a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp index 24fbcf881b2..716223c9a90 100644 --- a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp +++ b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp @@ -349,7 +349,7 @@ public:      struct npc_dragonmaw_peonAI : public ScriptedAI      { -        npc_dragonmaw_peonAI(Creature* creature) : ScriptedAI(creature) {} +        npc_dragonmaw_peonAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID;          bool Tapped; @@ -726,7 +726,7 @@ public:      struct npc_overlord_morghorAI : public ScriptedAI      { -        npc_overlord_morghorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_overlord_morghorAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID;          uint64 IllidanGUID; @@ -1262,7 +1262,7 @@ public:      struct npc_torloth_the_magnificentAI : public ScriptedAI      { -        npc_torloth_the_magnificentAI(Creature* creature) : ScriptedAI(creature) {} +        npc_torloth_the_magnificentAI(Creature* creature) : ScriptedAI(creature) { }          uint32 AnimationTimer, SpellTimer1, SpellTimer2, SpellTimer3; @@ -1417,7 +1417,7 @@ public:      struct npc_lord_illidan_stormrageAI : public ScriptedAI      { -        npc_lord_illidan_stormrageAI(Creature* creature) : ScriptedAI(creature) {} +        npc_lord_illidan_stormrageAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID; @@ -1559,7 +1559,7 @@ public:      struct npc_illidari_spawnAI : public ScriptedAI      { -        npc_illidari_spawnAI(Creature* creature) : ScriptedAI(creature) {} +        npc_illidari_spawnAI(Creature* creature) : ScriptedAI(creature) { }          uint64 LordIllidanGUID;          uint32 SpellTimer1, SpellTimer2, SpellTimer3; @@ -1814,7 +1814,7 @@ public:      struct npc_enraged_spiritAI : public ScriptedAI      { -        npc_enraged_spiritAI(Creature* creature) : ScriptedAI(creature) {} +        npc_enraged_spiritAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {} @@ -1930,11 +1930,11 @@ enum ShadowMoonTuberEnum  class npc_shadowmoon_tuber_node : public CreatureScript  {  public: -    npc_shadowmoon_tuber_node() : CreatureScript("npc_shadowmoon_tuber_node") {} +    npc_shadowmoon_tuber_node() : CreatureScript("npc_shadowmoon_tuber_node") { }      struct npc_shadowmoon_tuber_nodeAI : public ScriptedAI      { -        npc_shadowmoon_tuber_nodeAI(Creature* creature) : ScriptedAI(creature) {} +        npc_shadowmoon_tuber_nodeAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/Outland/zone_shattrath_city.cpp b/src/server/scripts/Outland/zone_shattrath_city.cpp index 6f4694a5924..52063bac5ca 100644 --- a/src/server/scripts/Outland/zone_shattrath_city.cpp +++ b/src/server/scripts/Outland/zone_shattrath_city.cpp @@ -162,7 +162,7 @@ public:      struct npc_salsalabimAI : public ScriptedAI      { -        npc_salsalabimAI(Creature* creature) : ScriptedAI(creature) {} +        npc_salsalabimAI(Creature* creature) : ScriptedAI(creature) { }          uint32 MagneticPull_Timer; @@ -331,7 +331,7 @@ public:      struct npc_kservantAI : public npc_escortAI      {      public: -        npc_kservantAI(Creature* creature) : npc_escortAI(creature) {} +        npc_kservantAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/Outland/zone_terokkar_forest.cpp b/src/server/scripts/Outland/zone_terokkar_forest.cpp index 2cf82cce4d1..1909f12590c 100644 --- a/src/server/scripts/Outland/zone_terokkar_forest.cpp +++ b/src/server/scripts/Outland/zone_terokkar_forest.cpp @@ -68,7 +68,7 @@ public:      struct npc_unkor_the_ruthlessAI : public ScriptedAI      { -        npc_unkor_the_ruthlessAI(Creature* creature) : ScriptedAI(creature) {} +        npc_unkor_the_ruthlessAI(Creature* creature) : ScriptedAI(creature) { }          bool CanDoQuest;          uint32 UnkorUnfriendly_Timer; @@ -175,7 +175,7 @@ public:      struct npc_infested_root_walkerAI : public ScriptedAI      { -        npc_infested_root_walkerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_infested_root_walkerAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -207,7 +207,7 @@ public:      struct npc_skywingAI : public npc_escortAI      {      public: -        npc_skywingAI(Creature* creature) : npc_escortAI(creature) {} +        npc_skywingAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -262,7 +262,7 @@ public:      struct npc_rotting_forest_ragerAI : public ScriptedAI      { -        npc_rotting_forest_ragerAI(Creature* creature) : ScriptedAI(creature) {} +        npc_rotting_forest_ragerAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -305,7 +305,7 @@ public:      struct npc_netherweb_victimAI : public ScriptedAI      { -        npc_netherweb_victimAI(Creature* creature) : ScriptedAI(creature) {} +        npc_netherweb_victimAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -467,7 +467,7 @@ public:      struct npc_isla_starmaneAI : public npc_escortAI      { -        npc_isla_starmaneAI(Creature* creature) : npc_escortAI(creature) {} +        npc_isla_starmaneAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { @@ -672,7 +672,7 @@ public:      struct npc_akunoAI : public npc_escortAI      { -        npc_akunoAI(Creature* creature) : npc_escortAI(creature) {} +        npc_akunoAI(Creature* creature) : npc_escortAI(creature) { }          void WaypointReached(uint32 waypointId) OVERRIDE          { diff --git a/src/server/scripts/Outland/zone_zangarmarsh.cpp b/src/server/scripts/Outland/zone_zangarmarsh.cpp index be938582d9c..bac252ffb1f 100644 --- a/src/server/scripts/Outland/zone_zangarmarsh.cpp +++ b/src/server/scripts/Outland/zone_zangarmarsh.cpp @@ -342,7 +342,7 @@ public:      struct npc_kayra_longmaneAI : public npc_escortAI      { -        npc_kayra_longmaneAI(Creature* creature) : npc_escortAI(creature) {} +        npc_kayra_longmaneAI(Creature* creature) : npc_escortAI(creature) { }          void Reset() OVERRIDE {} diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp index e1305d71b73..e78d690d3c0 100644 --- a/src/server/scripts/Spells/spell_dk.cpp +++ b/src/server/scripts/Spells/spell_dk.cpp @@ -436,7 +436,7 @@ class spell_dk_death_coil : public SpellScriptLoader  class spell_dk_death_gate : public SpellScriptLoader  {      public: -        spell_dk_death_gate() : SpellScriptLoader("spell_dk_death_gate") {} +        spell_dk_death_gate() : SpellScriptLoader("spell_dk_death_gate") { }          class spell_dk_death_gate_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp index f61da1f7179..73db091eee1 100644 --- a/src/server/scripts/Spells/spell_holiday.cpp +++ b/src/server/scripts/Spells/spell_holiday.cpp @@ -203,7 +203,7 @@ enum TrickOrTreatSpells  class spell_hallow_end_trick_or_treat : public SpellScriptLoader  {      public: -        spell_hallow_end_trick_or_treat() : SpellScriptLoader("spell_hallow_end_trick_or_treat") {} +        spell_hallow_end_trick_or_treat() : SpellScriptLoader("spell_hallow_end_trick_or_treat") { }          class spell_hallow_end_trick_or_treat_SpellScript : public SpellScript          { diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index 9f7386ab7e6..630485b0b88 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -1350,7 +1350,7 @@ class spell_item_create_heart_candy : public SpellScriptLoader  class spell_item_book_of_glyph_mastery : public SpellScriptLoader  {      public: -        spell_item_book_of_glyph_mastery() : SpellScriptLoader("spell_item_book_of_glyph_mastery") {} +        spell_item_book_of_glyph_mastery() : SpellScriptLoader("spell_item_book_of_glyph_mastery") { }          class spell_item_book_of_glyph_mastery_SpellScript : public SpellScript          { @@ -1404,7 +1404,7 @@ enum GiftOfTheHarvester  class spell_item_gift_of_the_harvester : public SpellScriptLoader  {      public: -        spell_item_gift_of_the_harvester() : SpellScriptLoader("spell_item_gift_of_the_harvester") {} +        spell_item_gift_of_the_harvester() : SpellScriptLoader("spell_item_gift_of_the_harvester") { }          class spell_item_gift_of_the_harvester_SpellScript : public SpellScript          { @@ -1445,7 +1445,7 @@ enum Sinkholes  class spell_item_map_of_the_geyser_fields : public SpellScriptLoader  {      public: -        spell_item_map_of_the_geyser_fields() : SpellScriptLoader("spell_item_map_of_the_geyser_fields") {} +        spell_item_map_of_the_geyser_fields() : SpellScriptLoader("spell_item_map_of_the_geyser_fields") { }          class spell_item_map_of_the_geyser_fields_SpellScript : public SpellScript          { @@ -1536,7 +1536,7 @@ enum AshbringerSounds  class spell_item_ashbringer : public SpellScriptLoader  {      public: -        spell_item_ashbringer() : SpellScriptLoader("spell_item_ashbringer") {} +        spell_item_ashbringer() : SpellScriptLoader("spell_item_ashbringer") { }          class spell_item_ashbringer_SpellScript : public SpellScript          { @@ -1585,7 +1585,7 @@ enum MagicEater  class spell_magic_eater_food : public SpellScriptLoader  {      public: -        spell_magic_eater_food() : SpellScriptLoader("spell_magic_eater_food") {} +        spell_magic_eater_food() : SpellScriptLoader("spell_magic_eater_food") { }          class spell_magic_eater_food_AuraScript : public AuraScript          { diff --git a/src/server/scripts/World/achievement_scripts.cpp b/src/server/scripts/World/achievement_scripts.cpp index 6cd5e962c02..40af44911ed 100644 --- a/src/server/scripts/World/achievement_scripts.cpp +++ b/src/server/scripts/World/achievement_scripts.cpp @@ -223,7 +223,7 @@ enum ArgentTournamentAreas  class achievement_tilted : public AchievementCriteriaScript  {      public: -        achievement_tilted() : AchievementCriteriaScript("achievement_tilted") {} +        achievement_tilted() : AchievementCriteriaScript("achievement_tilted") { }          bool OnCheck(Player* player, Unit* /*target*/) OVERRIDE          { diff --git a/src/server/scripts/World/areatrigger_scripts.cpp b/src/server/scripts/World/areatrigger_scripts.cpp index 1b43ee30cd1..3ab9a1511af 100644 --- a/src/server/scripts/World/areatrigger_scripts.cpp +++ b/src/server/scripts/World/areatrigger_scripts.cpp @@ -243,7 +243,7 @@ class AreaTrigger_at_sholazar_waygate : public AreaTriggerScript  {      public: -        AreaTrigger_at_sholazar_waygate() : AreaTriggerScript("at_sholazar_waygate") {} +        AreaTrigger_at_sholazar_waygate() : AreaTriggerScript("at_sholazar_waygate") { }          bool OnTrigger(Player* player, AreaTriggerEntry const* trigger) OVERRIDE          { diff --git a/src/server/scripts/World/go_scripts.cpp b/src/server/scripts/World/go_scripts.cpp index ce44cb57eef..84ef56eb413 100644 --- a/src/server/scripts/World/go_scripts.cpp +++ b/src/server/scripts/World/go_scripts.cpp @@ -889,7 +889,7 @@ enum SoulWellData  class go_soulwell : public GameObjectScript  {      public: -        go_soulwell() : GameObjectScript("go_soulwell") {} +        go_soulwell() : GameObjectScript("go_soulwell") { }          struct go_soulwellAI : public GameObjectAI          { diff --git a/src/server/scripts/World/guards.cpp b/src/server/scripts/World/guards.cpp index f83d35b4039..95f97b1dc84 100644 --- a/src/server/scripts/World/guards.cpp +++ b/src/server/scripts/World/guards.cpp @@ -54,7 +54,7 @@ public:      struct guard_genericAI : public GuardAI      { -        guard_genericAI(Creature* creature) : GuardAI(creature) {} +        guard_genericAI(Creature* creature) : GuardAI(creature) { }          void Reset() OVERRIDE          { @@ -263,7 +263,7 @@ public:      struct guard_shattrath_scryerAI : public GuardAI      { -        guard_shattrath_scryerAI(Creature* creature) : GuardAI(creature) {} +        guard_shattrath_scryerAI(Creature* creature) : GuardAI(creature) { }          void Reset() OVERRIDE          { @@ -328,7 +328,7 @@ public:      struct guard_shattrath_aldorAI : public GuardAI      { -        guard_shattrath_aldorAI(Creature* creature) : GuardAI(creature) {} +        guard_shattrath_aldorAI(Creature* creature) : GuardAI(creature) { }          void Reset() OVERRIDE          { diff --git a/src/server/scripts/World/item_scripts.cpp b/src/server/scripts/World/item_scripts.cpp index 7b6cb90f6c9..5b8e780e3d3 100644 --- a/src/server/scripts/World/item_scripts.cpp +++ b/src/server/scripts/World/item_scripts.cpp @@ -172,7 +172,7 @@ public:  class item_disgusting_jar : public ItemScript  {  public: -    item_disgusting_jar() : ItemScript("item_disgusting_jar") {} +    item_disgusting_jar() : ItemScript("item_disgusting_jar") { }      bool OnExpire(Player* player, ItemTemplate const* /*pItemProto*/) OVERRIDE      { diff --git a/src/server/scripts/World/mob_generic_creature.cpp b/src/server/scripts/World/mob_generic_creature.cpp index 3891de93261..ed086712ca2 100644 --- a/src/server/scripts/World/mob_generic_creature.cpp +++ b/src/server/scripts/World/mob_generic_creature.cpp @@ -36,7 +36,7 @@ public:      struct generic_creatureAI : public ScriptedAI      { -        generic_creatureAI(Creature* creature) : ScriptedAI(creature) {} +        generic_creatureAI(Creature* creature) : ScriptedAI(creature) { }          uint32 GlobalCooldown;      //This variable acts like the global cooldown that players have (1.5 seconds)          uint32 BuffTimer;           //This variable keeps track of buffs @@ -212,7 +212,7 @@ public:      struct trigger_deathAI : public NullCreatureAI      { -        trigger_deathAI(Creature* creature) : NullCreatureAI(creature) {} +        trigger_deathAI(Creature* creature) : NullCreatureAI(creature) { }          void JustDied(Unit* killer) OVERRIDE          {              if (me->m_spells[0]) diff --git a/src/server/scripts/World/npcs_special.cpp b/src/server/scripts/World/npcs_special.cpp index 5304cbf56ca..78c2e9c7ef5 100644 --- a/src/server/scripts/World/npcs_special.cpp +++ b/src/server/scripts/World/npcs_special.cpp @@ -330,7 +330,7 @@ public:      struct npc_chicken_cluckAI : public ScriptedAI      { -        npc_chicken_cluckAI(Creature* creature) : ScriptedAI(creature) {} +        npc_chicken_cluckAI(Creature* creature) : ScriptedAI(creature) { }          uint32 ResetFlagTimer; @@ -425,7 +425,7 @@ public:      struct npc_dancing_flamesAI : public ScriptedAI      { -        npc_dancing_flamesAI(Creature* creature) : ScriptedAI(creature) {} +        npc_dancing_flamesAI(Creature* creature) : ScriptedAI(creature) { }          bool Active;          uint32 CanIteract; @@ -572,11 +572,11 @@ uint32 const HordeSoldierId[3] =  class npc_doctor : public CreatureScript  {  public: -    npc_doctor() : CreatureScript("npc_doctor") {} +    npc_doctor() : CreatureScript("npc_doctor") { }      struct npc_doctorAI : public ScriptedAI      { -        npc_doctorAI(Creature* creature) : ScriptedAI(creature) {} +        npc_doctorAI(Creature* creature) : ScriptedAI(creature) { }          uint64 PlayerGUID; @@ -721,7 +721,7 @@ public:      struct npc_injured_patientAI : public ScriptedAI      { -        npc_injured_patientAI(Creature* creature) : ScriptedAI(creature) {} +        npc_injured_patientAI(Creature* creature) : ScriptedAI(creature) { }          uint64 DoctorGUID;          Location* Coord; @@ -1123,7 +1123,7 @@ public:      struct npc_guardianAI : public ScriptedAI      { -        npc_guardianAI(Creature* creature) : ScriptedAI(creature) {} +        npc_guardianAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE          { @@ -1498,7 +1498,7 @@ public:      struct npc_steam_tonkAI : public ScriptedAI      { -        npc_steam_tonkAI(Creature* creature) : ScriptedAI(creature) {} +        npc_steam_tonkAI(Creature* creature) : ScriptedAI(creature) { }          void Reset() OVERRIDE {}          void EnterCombat(Unit* /*who*/) OVERRIDE {} @@ -1716,11 +1716,11 @@ enum WormholeSpells  class npc_wormhole : public CreatureScript  {      public: -        npc_wormhole() : CreatureScript("npc_wormhole") {} +        npc_wormhole() : CreatureScript("npc_wormhole") { }          struct npc_wormholeAI : public PassiveAI          { -            npc_wormholeAI(Creature* creature) : PassiveAI(creature) {} +            npc_wormholeAI(Creature* creature) : PassiveAI(creature) { }              void InitializeAI() OVERRIDE              { @@ -2135,7 +2135,7 @@ public:      struct npc_fireworkAI : public ScriptedAI      { -        npc_fireworkAI(Creature* creature) : ScriptedAI(creature) {} +        npc_fireworkAI(Creature* creature) : ScriptedAI(creature) { }          bool isCluster()          {  | 
