diff --git a/data/sql/updates/pending_db_world/might-of-mograine.sql b/data/sql/updates/pending_db_world/might-of-mograine.sql new file mode 100644 index 000000000..d7b2b0592 --- /dev/null +++ b/data/sql/updates/pending_db_world/might-of-mograine.sql @@ -0,0 +1,4 @@ +UPDATE `spell_script_names` SET `ScriptName` = 'spell_gen_area_aura_select_players_and_caster' WHERE `spell_id` = 53642; + +DELETE FROM `spell_custom_attr` WHERE `spell_id` = 53642; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (53642, 2048); diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp index 1edb08561..31233da0a 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp @@ -661,7 +661,7 @@ public: me->SetHomePosition(pos); me->SetWalk(false); me->GetMotionMaster()->MovePoint(1, pos.GetPositionX(), pos.GetPositionY(), pos.GetPositionZ(), true, true); - me->CastSpell(me, SPELL_THE_MIGHT_OF_MOGRAINE, true); + DoCastSelf(SPELL_THE_MIGHT_OF_MOGRAINE, true); break; } case EVENT_START_COUNTDOWN_14: diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index 80c7365e8..0678db1e4 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -606,7 +606,6 @@ class spell_gen_black_magic_enchant : public AuraScript } }; -// 53642 - The Might of Mograine // 64174 - Protective Gaze class spell_gen_area_aura_select_players : public AuraScript { @@ -622,6 +621,7 @@ class spell_gen_area_aura_select_players : public AuraScript } }; +// 53642 - The Might of Mograine // 62650 - Fortitude of Frost // 62670 - Resilience of Nature // 62671 - Speed of Invention