[9315] Use correct way extraction low guid for player.

No functional changes in fact for current code base at 0 high guids used for player at this moment.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Lutik 2010-02-06 19:19:11 +03:00 committed by VladimirMangos
parent 9d191da17d
commit 7498b1673e
2 changed files with 2 additions and 2 deletions

View file

@ -1251,7 +1251,7 @@ void Group::_setLeader(const uint64 &guid)
CharacterDatabase.CommitTransaction();
}
uint32 old_guidlow = m_leaderGuid;
uint32 old_guidlow = GUID_LOPART(m_leaderGuid);
m_leaderGuid = slot->guid;
m_leaderName = slot->name;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9314"
#define REVISION_NR "9315"
#endif // __REVISION_NR_H__