diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-05-29 12:38:10 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-05-29 12:38:10 +0200 |
| commit | b2096c711ee0440c957b1fe7d12ccf2550725c98 (patch) | |
| tree | b344dca86f2d3be7a8f5b65c9beadfc324572f94 | |
| parent | 0bde74eff60be78b39c1e3cc129b05886e7eb87b (diff) | |
Scripts/Icecrown Citadel: Properly remove Uncontrollable Frenzy linked auras when entering evade more
| -rw-r--r-- | sql/base/world_database.sql | 4 | ||||
| -rw-r--r-- | sql/updates/world/2011_05_29_01_world_spell_linked_spell.sql | 5 | ||||
| -rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index d88a6e64ab2..52882cc4a79 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -18215,7 +18215,9 @@ INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment ( 70877, 72151, 2, 'Blood-Queen: Frenzied Bloodthirst 10man'), ( 71474, 72648, 2, 'Blood-Queen: Frenzied Bloodthirst 25man'), ( 71474, 72650, 2, 'Blood-Queen: Frenzied Bloodthirst 25man'), -( 70923, 70924, 2, 'Blood-Queen: Uncontrollable Frenzy'), +( 70923, 70924, 1, 'Blood-Queen: Uncontrollable Frenzy damage buff'), +(-70923,-70924, 0, 'Blood-Queen: Uncontrollable Frenzy remove 10man'), +(-70923,-73015, 0, 'Blood-Queen: Uncontrollable Frenzy remove 25man'), ( 71446, 71447, 1, 'Blood-Queen: Bloodbolt Splash'), ( 71478, 71481, 1, 'Blood-Queen: Bloodbolt Splash'), ( 71479, 71482, 1, 'Blood-Queen: Bloodbolt Splash'), diff --git a/sql/updates/world/2011_05_29_01_world_spell_linked_spell.sql b/sql/updates/world/2011_05_29_01_world_spell_linked_spell.sql new file mode 100644 index 00000000000..0c694499c4a --- /dev/null +++ b/sql/updates/world/2011_05_29_01_world_spell_linked_spell.sql @@ -0,0 +1,5 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (70923,-70923); +INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES +(70923,70924,1,'Blood-Queen: Uncontrollable Frenzy damage buff'), +(-70923,-70924,0,'Blood-Queen: Uncontrollable Frenzy remove 10man'), +(-70923,-73015,0,'Blood-Queen: Uncontrollable Frenzy remove 25man'); 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 0653fc62163..e3ac89c4b2a 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 @@ -143,6 +143,7 @@ class boss_blood_queen_lana_thel : public CreatureScript events.ScheduleEvent(EVENT_SWARMING_SHADOWS, 30500, EVENT_GROUP_NORMAL); events.ScheduleEvent(EVENT_TWILIGHT_BLOODBOLT, urand(20000, 25000), EVENT_GROUP_NORMAL); events.ScheduleEvent(EVENT_AIR_PHASE, 124000 + uint32(Is25ManRaid() ? 3000 : 0)); + instance->DoRemoveAurasDueToSpellOnPlayers(SPELL_UNCONTROLLABLE_FRENZY); me->SetSpeed(MOVE_FLIGHT, 0.642857f, true); _offtank = NULL; _vampires.clear(); |
