diff --git a/src/game/ObjectGuid.cpp b/src/game/ObjectGuid.cpp index 59d84785b..a206abb35 100644 --- a/src/game/ObjectGuid.cpp +++ b/src/game/ObjectGuid.cpp @@ -51,7 +51,7 @@ std::string ObjectGuid::GetString() const if (IsPlayer()) { std::string name; - if (sObjectMgr.GetPlayerNameByGUID(m_guid, name)) + if (sObjectMgr.GetPlayerNameByGUID(*this, name)) str << " " << name; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 40ef06f66..bb30c8f05 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 "11472" + #define REVISION_NR "11473" #endif // __REVISION_NR_H__