diff options
author | Vincent_Michael <Vincent_Michael@gmx.de> | 2012-12-26 02:50:19 +0100 |
---|---|---|
committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2012-12-26 02:50:19 +0100 |
commit | e65da39f23ed4dfad38585ccf09ddcfc3138bbb7 (patch) | |
tree | b83540df81fde6d6b7a9a1c03c7d7f2b2d6c740f | |
parent | 12f9fd3f889fa501dc045a9e5dddfc057ac85a7a (diff) |
Core: Fix non pch build
4 files changed, 11 insertions, 8 deletions
diff --git a/sql/updates/world/2012_12_25_01_world_halls_of_origination_434.sql b/sql/updates/world/2012_12_25_01_world_halls_of_origination_434.sql index 84588cf76d9..7b2cd1a7245 100644 --- a/sql/updates/world/2012_12_25_01_world_halls_of_origination_434.sql +++ b/sql/updates/world/2012_12_25_01_world_halls_of_origination_434.sql @@ -3,7 +3,7 @@ INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language (39428, 0, 0, 'More carrion for the swarm...', 14, 0, 100, 0, 0, 18906, 'Earthrager Ptah - SAY_AGGRO'), (39428, 1, 0, 'Ptah... is... no more...', 14, 0, 100, 0, 0, 18905, 'Earthrager Ptah - SAY_DEATH'); -DELETE FROM `spell_script_names` WHERE `spell_id` IN (75540,94974,75519); +DELETE FROM `spell_script_names` WHERE `spell_id` IN (75540,89881,94974,75519); INSERT INTO `spell_script_names` VALUES (75540,'spell_earthrager_ptah_flame_bolt'), (89881,'spell_earthrager_ptah_flame_bolt'), diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp index 3cb89f75c25..19c27d49a79 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp @@ -18,9 +18,10 @@ #include "ObjectMgr.h" #include "ScriptMgr.h" #include "ScriptedCreature.h" -#include "SpellAuras.h" -#include "halls_of_origination.h" +#include "SpellScript.h" +#include "SpellAuraEffects.h" #include "Player.h" +#include "halls_of_origination.h" enum Texts { @@ -364,4 +365,4 @@ void AddSC_boss_earthrager_ptah() new spell_earthrager_ptah_flame_bolt(); new spell_earthrager_ptah_earth_spike(); new spell_earthrager_ptah_explosion(); -}
\ No newline at end of file +} diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp index 0df55f5f276..d4f9593df03 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp @@ -18,9 +18,11 @@ #include "ObjectMgr.h" #include "ScriptMgr.h" #include "ScriptedCreature.h" -#include "SpellAuras.h" -#include "halls_of_origination.h" +#include "SpellScript.h" +#include "SpellAuraEffects.h" +#include "GridNotifiers.h" #include "Player.h" +#include "halls_of_origination.h" enum Texts { @@ -399,4 +401,4 @@ void AddSC_boss_temple_guardian_anhuur() new spell_anhuur_disable_beacon_beams(); new spell_anhuur_activate_beacons(); new spell_anhuur_divine_reckoning(); -}
\ No newline at end of file +} diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h b/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h index 1f11b594353..f1316c5db3c 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h @@ -73,4 +73,4 @@ CreatureAI* GetHallsOfOriginationAI(Creature* creature) return NULL; } -#endif // HALLS_OF_ORIGINATION_H
\ No newline at end of file +#endif // HALLS_OF_ORIGINATION_H |