From c49771337c9878ac01436b20fcadff5b9cef291e Mon Sep 17 00:00:00 2001 From: LordJZ Date: Tue, 9 Feb 2010 14:32:23 +0100 Subject: [PATCH] [9341] Fixed loading chosen player title --- 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 9c7edf9dd..74eba5868 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -15035,7 +15035,7 @@ bool Player::LoadFromDB( uint32 guid, SqlQueryHolder *holder ) // check PLAYER_CHOSEN_TITLE compatibility with PLAYER__FIELD_KNOWN_TITLES // note: PLAYER__FIELD_KNOWN_TITLES updated at quest status loaded - uint32 curTitle = fields[10].GetUInt32(); + uint32 curTitle = fields[47].GetUInt32(); if (curTitle && !HasTitle(curTitle)) curTitle = 0; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 78b9365bd..71d548a89 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 "9340" + #define REVISION_NR "9341" #endif // __REVISION_NR_H__