diff --git a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp index c67d9d91529..cc6502ad6d1 100644 --- a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp +++ b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp @@ -227,6 +227,11 @@ struct boss_anshal : public BossAI _isGatheringStrength = false; } + void JustAppeared() override + { + DoCastSelf(SPELL_POWER_DRAIN); + } + void AttackStart(Unit* who) override { if (ConclaveHandler::IsTargetOnPlatform(me->GetHomePosition(), who)) @@ -470,6 +475,11 @@ struct boss_nezir : public BossAI _isGatheringStrength = false; } + void JustAppeared() override + { + DoCastSelf(SPELL_POWER_DRAIN); + } + void AttackStart(Unit* who) override { if (ConclaveHandler::IsTargetOnPlatform(me->GetHomePosition(), who)) @@ -699,6 +709,11 @@ struct boss_rohash : public BossAI _isGatheringStrength = false; } + void JustAppeared() override + { + DoCastSelf(SPELL_POWER_DRAIN); + } + void AttackStart(Unit* who) override { if (ConclaveHandler::IsTargetOnPlatform(me->GetHomePosition(), who))