aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/game/Scripting/ScriptMgr.h1
-rw-r--r--src/server/scripts/World/spell_pri.cpp34
2 files changed, 1 insertions, 34 deletions
diff --git a/src/server/game/Scripting/ScriptMgr.h b/src/server/game/Scripting/ScriptMgr.h
index d477d7a1e39..58f52e95ac9 100644
--- a/src/server/game/Scripting/ScriptMgr.h
+++ b/src/server/game/Scripting/ScriptMgr.h
@@ -12,6 +12,7 @@
#include "CompilerDefs.h"
#include "DBCStructure.h"
#include "ConfigEnv.h"
+#include "SpellScript.h"
class Player;
class Creature;
diff --git a/src/server/scripts/World/spell_pri.cpp b/src/server/scripts/World/spell_pri.cpp
deleted file mode 100644
index a659dd8effb..00000000000
--- a/src/server/scripts/World/spell_pri.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2008-2010 TrinityCore <http://www.trinitycore.org/>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/*
- * Scripts for spells with SPELLFAMILY_PRIEST and SPELLFAMILY_GENERIC spells used by warrior players.
- * Ordered alphabetically using scriptname.
- * Scriptnames of files in this file should be prefixed with "spell_pri_".
- */
-
-void AddSC_mage_spell_scripts()
-{
- Script *newscript;
-
- /*
- newscript = new Script;
- newscript->Name = "spell_pri_";
- newscript->GetSpellScript = &GetSpellScript_spell_pri_;
- newscript->RegisterSelf();
- */
-} \ No newline at end of file