[9695] Fixed typo in error output string.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
cyrex 2010-04-08 06:12:21 +04:00 committed by VladimirMangos
parent 45fba95d13
commit 23da1a86d1
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ void WorldSession::HandleAttackSwingOpcode( WorldPacket & recv_data )
if(!pEnemy) if(!pEnemy)
{ {
if(!guid.IsUnit()) if(!guid.IsUnit())
sLog.outError("WORLD: %u isn't player, pet or creature", guid.GetString().c_str()); sLog.outError("WORLD: %s isn't player, pet or creature", guid.GetString().c_str());
else else
sLog.outError( "WORLD: Enemy %s not found", guid.GetString().c_str()); sLog.outError( "WORLD: Enemy %s not found", guid.GetString().c_str());

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9694" #define REVISION_NR "9695"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__