diff options
author | Brian <runningnak3d@gmail.com> | 2009-12-21 16:28:57 -0700 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2009-12-21 16:28:57 -0700 |
commit | eee8e179a124f9c3687dbc6f2f8c512b1239d2d9 (patch) | |
tree | e52337f6ebcfae850f0f78833d63c5cfc770f903 /src | |
parent | 86013b73b402ed00743eabb559e71d6d9dd6e47f (diff) |
* Commented useless debug output for spell_script_target and
* spell_target_position. If someone REALLY wants to see which ones are
* missing, they can uncomment them for a debug compile.
* Can finally start the core in debug mode and get useful data...
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 135b0ab8802..c876fbf822d 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1234,8 +1234,8 @@ void SpellMgr::LoadSpellTargetPositions() } if(found) { - if(!spellmgr.GetSpellTargetPosition(i)) - sLog.outDebug("Spell (ID: %u) does not have record in `spell_target_position`", i); +// if(!spellmgr.GetSpellTargetPosition(i)) +// sLog.outDebug("Spell (ID: %u) does not have record in `spell_target_position`", i); } } @@ -2056,8 +2056,8 @@ void SpellMgr::LoadSpellScriptTarget() if (found) { SpellScriptTargetBounds bounds = spellmgr.GetSpellScriptTargetBounds(i); - if (bounds.first == bounds.second) - sLog.outDebug("Spell (ID: %u) does not have record in `spell_script_target`", i); +// if (bounds.first == bounds.second) +// sLog.outDebug("Spell (ID: %u) does not have record in `spell_script_target`", i); } } |