From 80b9e581069d630ce987b03048f6905744f77efc Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Sat, 2 Jan 2010 19:10:06 +0100 Subject: [PATCH] [9105] Add missing argument in error message, _LoadSkills() Signed-off-by: NoFantasy --- src/game/Player.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/Player.cpp b/src/game/Player.cpp index a52f285e1..8f5b70a64 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -20406,7 +20406,7 @@ void Player::_LoadSkills(QueryResult *result) if(count >= PLAYER_MAX_SKILLS) // client limit { - sLog.outError("Character %u has more than %u skills.", PLAYER_MAX_SKILLS); + sLog.outError("Character %u has more than %u skills.", GetGUIDLow(), PLAYER_MAX_SKILLS); break; } } while (result->NextRow()); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3d7f3a166..ec9af1ef3 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9104" + #define REVISION_NR "9105" #endif // __REVISION_NR_H__