diff options
author | megamage <none@none> | 2009-06-17 14:09:17 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-17 14:09:17 -0500 |
commit | 2d569883e643ac08d5af6b23f9a0cd3ac4dc0d80 (patch) | |
tree | 9b2201d23090a9fddabf04e19a4afea0aaa70b2f /src/game/SpellMgr.cpp | |
parent | cf99758b0b0f857dda37e355801929ece4e6e928 (diff) |
*Add config option CheckDB to check if the contents in FULL folder are applied.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 2b70f697d9f..c11806e546a 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3626,3 +3626,13 @@ void SpellMgr::LoadSpellLinked() sLog.outString(); sLog.outString( ">> Loaded %u linked spells", count ); } + +bool SpellMgr::CheckDB() const +{ + SpellScriptTarget::const_iterator lower = GetBeginSpellScriptTarget(30531); + SpellScriptTarget::const_iterator upper = GetEndSpellScriptTarget(30531); + if(lower == upper || lower->second.targetEntry != 17256) + return false; + + return true; +} |