diff options
author | Killyana <morphone1@gmail.com> | 2019-12-16 21:17:10 +0100 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2019-12-16 21:17:10 +0100 |
commit | 4d89da56c18542f78f7ca29d57a06f08ffa3cef7 (patch) | |
tree | 6f5843cc6d440a7e0900bbf1e280e4da85289c33 | |
parent | 091ff42064bacd35d98f37fd80a9328e298f2752 (diff) |
Spell/Script: Move the spell "Flame Sphere Spawn Effect" from the DB to the cpp
-rw-r--r-- | sql/updates/world/3.3.5/2019_12_16_01_world.sql | 2 | ||||
-rw-r--r-- | src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sql/updates/world/3.3.5/2019_12_16_01_world.sql b/sql/updates/world/3.3.5/2019_12_16_01_world.sql new file mode 100644 index 00000000000..a4bd583daab --- /dev/null +++ b/sql/updates/world/3.3.5/2019_12_16_01_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template_addon` SET `auras`="" WHERE `entry` IN (38332); diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp index 2c7bc37a51e..c0f9ebcf5e7 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp @@ -91,7 +91,7 @@ enum Spells SPELL_CONJURE_EMPOWERED_FLAME = 72040, // Ball of Flame - SPELL_FLAME_SPHERE_SPAWN_EFFECT = 55891, // cast from creature_template_addon (needed cast before entering world) + SPELL_FLAME_SPHERE_SPAWN_EFFECT = 55891, SPELL_BALL_OF_FLAMES_VISUAL = 71706, SPELL_BALL_OF_FLAMES = 71714, SPELL_FLAMES = 71393, @@ -976,6 +976,7 @@ class npc_ball_of_flame : public CreatureScript void Reset() override { + DoCastSelf(SPELL_FLAME_SPHERE_SPAWN_EFFECT, true); DoCastSelf(SPELL_BALL_OF_FLAMES_VISUAL, true); if (me->GetEntry() == NPC_BALL_OF_INFERNO_FLAME) { |