diff options
author | Shauren <none@none> | 2010-08-02 18:25:44 +0200 |
---|---|---|
committer | Shauren <none@none> | 2010-08-02 18:25:44 +0200 |
commit | 03caa8550fd1e69a3c6943baf8ace93b86861253 (patch) | |
tree | f0d30029ba23d719eead2a3b583f3f3106392785 | |
parent | 18dd17730876dd41c38452a1c99b1dd61c9a0f5e (diff) |
Fixed typo (and a crash) - damn copypasting from one line above
--HG--
branch : trunk
-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; } |