diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Groups/Group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Groups/Group.h b/src/server/game/Groups/Group.h index 9ec9f7b4b58..576728da737 100644 --- a/src/server/game/Groups/Group.h +++ b/src/server/game/Groups/Group.h @@ -198,7 +198,7 @@ class Group bool IsCreated() const { return GetMembersCount() > 0; } const uint64& GetLeaderGUID() const { return m_leaderGuid; } const uint64& GetGUID() const { return m_guid; } - const uint32& GetLowGUID() const { return GUID_LOPART(m_guid); } + const uint32 GetLowGUID() const { return GUID_LOPART(m_guid); } const char * GetLeaderName() const { return m_leaderName.c_str(); } LootMethod GetLootMethod() const { return m_lootMethod; } const uint64& GetLooterGuid() const { return m_looterGuid; } |