diff options
| author | megamage <none@none> | 2009-03-09 17:56:51 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-03-09 17:56:51 -0600 |
| commit | 3d3656297f5c3b387bb3d121cd0160692af0ad96 (patch) | |
| tree | a1e28fed8f4d8a7449ca72c2fa0fed2d5209927e /src/game/Creature.cpp | |
| parent | f4e473c877c162088ed566ea12e9953327a52f92 (diff) | |
[7424] Codestyle: removed not needed \n in log output. Author: balrok
--HG--
branch : trunk
Diffstat (limited to 'src/game/Creature.cpp')
| -rw-r--r-- | src/game/Creature.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Creature.cpp b/src/game/Creature.cpp index 04950f1cab5..71f53cdabb0 100644 --- a/src/game/Creature.cpp +++ b/src/game/Creature.cpp @@ -1721,7 +1721,7 @@ SpellEntry const *Creature::reachWithSpellAttack(Unit *pVictim) SpellEntry const *spellInfo = sSpellStore.LookupEntry(m_spells[i] ); if(!spellInfo) { - sLog.outError("WORLD: unknown spell id %i\n", m_spells[i]); + sLog.outError("WORLD: unknown spell id %i", m_spells[i]); continue; } @@ -1771,7 +1771,7 @@ SpellEntry const *Creature::reachWithSpellCure(Unit *pVictim) SpellEntry const *spellInfo = sSpellStore.LookupEntry(m_spells[i] ); if(!spellInfo) { - sLog.outError("WORLD: unknown spell id %i\n", m_spells[i]); + sLog.outError("WORLD: unknown spell id %i", m_spells[i]); continue; } |
