aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/ScriptedPch.h1
-rw-r--r--src/game/SpellId.h4
-rw-r--r--src/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp1
-rw-r--r--src/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp1
-rw-r--r--src/scripts/northrend/draktharon_keep/boss_trollgore.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_anubrekhan.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_faerlina.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_gothik.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_loatheb.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_maexxna.cpp1
-rw-r--r--src/scripts/northrend/naxxramas/boss_thaddius.cpp1
-rw-r--r--src/scripts/northrend/violet_hold/boss_erekem.cpp1
-rw-r--r--src/scripts/northrend/violet_hold/boss_ichoron.cpp1
-rw-r--r--src/scripts/world/go_scripts.cpp2
14 files changed, 6 insertions, 12 deletions
diff --git a/src/game/ScriptedPch.h b/src/game/ScriptedPch.h
index bd725ded213..8a5e4bff428 100644
--- a/src/game/ScriptedPch.h
+++ b/src/game/ScriptedPch.h
@@ -21,6 +21,7 @@
#include "Chat.h"
#include "DBCStructure.h"
#include "DBCStores.h"
+#include "SpellId.h"
#ifdef WIN32
#include <windows.h>
diff --git a/src/game/SpellId.h b/src/game/SpellId.h
index 84ec56d262b..70eda7c85a0 100644
--- a/src/game/SpellId.h
+++ b/src/game/SpellId.h
@@ -1,5 +1,8 @@
/* This file is auto-generated. */
+#ifndef _SPELLID_H
+#define _SPELLID_H
+
enum SpellId
{
// 1: Word of Recall (OLD)
@@ -140134,3 +140137,4 @@ enum SpellId
};
+#endif \ No newline at end of file
diff --git a/src/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp b/src/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp
index 52cb2dbe065..a92866d0f35 100644
--- a/src/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp
+++ b/src/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp
@@ -20,7 +20,6 @@
#include "Vehicle.h"
#include "ObjectMgr.h"
#include "ScriptedEscortAI.h"
-#include "SpellId.h"
/*######
##Quest 12848
diff --git a/src/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp b/src/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp
index 627ef3954a3..633c91dbc2b 100644
--- a/src/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp
+++ b/src/scripts/kalimdor/temple_of_ahnqiraj/boss_cthun.cpp
@@ -23,7 +23,6 @@ EndScriptData */
#include "ScriptedPch.h"
#include "temple_of_ahnqiraj.h"
-#include "SpellId.h"
/*
* This is a 2 phases events. Here follows an explanation of the main events and transition between phases and sub-phases.
diff --git a/src/scripts/northrend/draktharon_keep/boss_trollgore.cpp b/src/scripts/northrend/draktharon_keep/boss_trollgore.cpp
index a820703961a..c5ebd62d7ea 100644
--- a/src/scripts/northrend/draktharon_keep/boss_trollgore.cpp
+++ b/src/scripts/northrend/draktharon_keep/boss_trollgore.cpp
@@ -29,7 +29,6 @@ update creature_template set scriptname = 'boss_trollgore' where entry = '';
*** SQL END ***/
#include "ScriptedPch.h"
#include "drak_tharon_keep.h"
-#include "SpellId.h"
enum Spells
{
diff --git a/src/scripts/northrend/naxxramas/boss_anubrekhan.cpp b/src/scripts/northrend/naxxramas/boss_anubrekhan.cpp
index 3b731bc2723..19913ce3036 100644
--- a/src/scripts/northrend/naxxramas/boss_anubrekhan.cpp
+++ b/src/scripts/northrend/naxxramas/boss_anubrekhan.cpp
@@ -16,7 +16,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
#define SAY_GREET RAND(-1533000,-1533004,-1533005,-1533006,-1533007)
#define SAY_AGGRO RAND(-1533001,-1533002,-1533003)
diff --git a/src/scripts/northrend/naxxramas/boss_faerlina.cpp b/src/scripts/northrend/naxxramas/boss_faerlina.cpp
index 905ed0034d6..1405fd09cc8 100644
--- a/src/scripts/northrend/naxxramas/boss_faerlina.cpp
+++ b/src/scripts/northrend/naxxramas/boss_faerlina.cpp
@@ -18,7 +18,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
enum Yells
{
diff --git a/src/scripts/northrend/naxxramas/boss_gothik.cpp b/src/scripts/northrend/naxxramas/boss_gothik.cpp
index 191a5e8e91d..0109fcaa56a 100644
--- a/src/scripts/northrend/naxxramas/boss_gothik.cpp
+++ b/src/scripts/northrend/naxxramas/boss_gothik.cpp
@@ -16,7 +16,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
enum Yells
{
diff --git a/src/scripts/northrend/naxxramas/boss_loatheb.cpp b/src/scripts/northrend/naxxramas/boss_loatheb.cpp
index c1a637cc701..9bafbeda2a1 100644
--- a/src/scripts/northrend/naxxramas/boss_loatheb.cpp
+++ b/src/scripts/northrend/naxxramas/boss_loatheb.cpp
@@ -18,7 +18,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
enum Spells
{
diff --git a/src/scripts/northrend/naxxramas/boss_maexxna.cpp b/src/scripts/northrend/naxxramas/boss_maexxna.cpp
index 8f874e4fcfd..7b647b1d439 100644
--- a/src/scripts/northrend/naxxramas/boss_maexxna.cpp
+++ b/src/scripts/northrend/naxxramas/boss_maexxna.cpp
@@ -18,7 +18,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
enum Spells
{
diff --git a/src/scripts/northrend/naxxramas/boss_thaddius.cpp b/src/scripts/northrend/naxxramas/boss_thaddius.cpp
index b2a4b16b2a7..5e023e19ce2 100644
--- a/src/scripts/northrend/naxxramas/boss_thaddius.cpp
+++ b/src/scripts/northrend/naxxramas/boss_thaddius.cpp
@@ -18,7 +18,6 @@
#include "ScriptedPch.h"
#include "naxxramas.h"
-#include "SpellId.h"
//Stalagg
enum StalaggYells
diff --git a/src/scripts/northrend/violet_hold/boss_erekem.cpp b/src/scripts/northrend/violet_hold/boss_erekem.cpp
index f88622ddf0a..302425966ed 100644
--- a/src/scripts/northrend/violet_hold/boss_erekem.cpp
+++ b/src/scripts/northrend/violet_hold/boss_erekem.cpp
@@ -11,7 +11,6 @@ update creature_template set scriptname = '' where entry = '';
*** SQL END ***/
#include "ScriptedPch.h"
#include "violet_hold.h"
-#include "SpellId.h"
enum Spells
{
diff --git a/src/scripts/northrend/violet_hold/boss_ichoron.cpp b/src/scripts/northrend/violet_hold/boss_ichoron.cpp
index 8c51340acc4..fb916fd02e9 100644
--- a/src/scripts/northrend/violet_hold/boss_ichoron.cpp
+++ b/src/scripts/northrend/violet_hold/boss_ichoron.cpp
@@ -24,7 +24,6 @@ Script Data End */
#include "ScriptedPch.h"
#include "violet_hold.h"
-#include "SpellId.h"
enum Spells
{
diff --git a/src/scripts/world/go_scripts.cpp b/src/scripts/world/go_scripts.cpp
index 6235c6b3127..b771e3cbcec 100644
--- a/src/scripts/world/go_scripts.cpp
+++ b/src/scripts/world/go_scripts.cpp
@@ -43,10 +43,10 @@ go_rusty_cage
go_scourge_cage
go_jotunheim_cage
go_table_theka
+go_soulwell
EndContentData */
#include "ScriptedPch.h"
-#include "SpellId.h"
/*######
## go_cat_figurine