mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[9105] Add missing argument in error message, _LoadSkills()
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
e8e5bbddea
commit
80b9e58106
2 changed files with 2 additions and 2 deletions
|
|
@ -20406,7 +20406,7 @@ void Player::_LoadSkills(QueryResult *result)
|
||||||
|
|
||||||
if(count >= PLAYER_MAX_SKILLS) // client limit
|
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;
|
break;
|
||||||
}
|
}
|
||||||
} while (result->NextRow());
|
} while (result->NextRow());
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9104"
|
#define REVISION_NR "9105"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue