aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/world_database.sql4
-rw-r--r--sql/updates/world/2011_05_29_01_world_spell_linked_spell.sql5
-rw-r--r--src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp1
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();