[7424] Codestyle: removed not needed \n in log output. Author: balrok

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-09 17:56:51 -06:00
parent f4e473c877
commit 3d3656297f
11 changed files with 112 additions and 31 deletions

View File

@@ -128,7 +128,7 @@ void WorldSession::HandleLearnTalentOpcode( WorldPacket & recv_data )
// learn! (other talent ranks will unlearned at learning)
GetPlayer( )->learnSpell(spellid,false);
sLog.outDetail("TalentID: %u Rank: %u Spell: %u\n", talent_id, requested_rank, spellid);
sLog.outDetail("TalentID: %u Rank: %u Spell: %u", talent_id, requested_rank, spellid);
// update free talent points
GetPlayer()->SetFreeTalentPoints(CurTalentPoints - 1);