aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <none@none>2010-08-02 18:25:44 +0200
committerShauren <none@none>2010-08-02 18:25:44 +0200
commit03caa8550fd1e69a3c6943baf8ace93b86861253 (patch)
treef0d30029ba23d719eead2a3b583f3f3106392785
parent18dd17730876dd41c38452a1c99b1dd61c9a0f5e (diff)
Fixed typo (and a crash) - damn copypasting from one line above
--HG-- branch : trunk
-rw-r--r--src/server/game/Groups/Group.h2
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; }