diff options
author | Nay <dnpd.dd@gmail.com> | 2011-03-02 18:20:33 +0000 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-03-02 18:20:33 +0000 |
commit | eea7efa463a767f70022bae03c48e1839d0ed5d3 (patch) | |
tree | ca0db39b560869202ef2b55711010b34816e0b74 /src | |
parent | f8a6522291f74fd0bf28eae74c44725b0adb9866 (diff) |
Core/SAI: Correct debug log for SMART_ACTION_CAST
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/AI/SmartScripts/SmartScript.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/AI/SmartScripts/SmartScript.cpp b/src/server/game/AI/SmartScripts/SmartScript.cpp index f8a2e6ae807..698ac608cb7 100644 --- a/src/server/game/AI/SmartScripts/SmartScript.cpp +++ b/src/server/game/AI/SmartScripts/SmartScript.cpp @@ -414,8 +414,8 @@ void SmartScript::ProcessAction(SmartScriptHolder &e, Unit* unit, uint32 var0, u me->InterruptNonMeleeSpells(false); me->CastSpell((*itr)->ToUnit(), e.action.cast.spell,(e.action.cast.flags & SMARTCAST_TRIGGERED) ? true : false); - sLog->outDebug(LOG_FILTER_DATABASE_AI, "SmartScript::ProcessAction:: SMART_ACTION_CAST:: Creature %u casts spell % on target %u with castflags %u", - me->GetGUIDLow(), (*itr)->GetGUIDLow(), e.action.cast.spell, e.action.cast.flags); + sLog->outDebug(LOG_FILTER_DATABASE_AI, "SmartScript::ProcessAction:: SMART_ACTION_CAST:: Creature %u casts spell %u on target %u with castflags %u", + me->GetGUIDLow(), e.action.cast.spell, (*itr)->GetGUIDLow(), e.action.cast.flags); } break; } |