diff options
author | n0n4m3 <none@none> | 2010-04-11 11:24:59 +0400 |
---|---|---|
committer | n0n4m3 <none@none> | 2010-04-11 11:24:59 +0400 |
commit | 0d48d3bd8c0569968a8775b471752782831e8b03 (patch) | |
tree | 18b3de6ebd0a7a068b8fe8fb279d7e1254f6bfcf /src/game/Group.cpp | |
parent | 45e750148a256333b49dae7b2725eb815ba4089d (diff) |
Fix some typo and compile errors.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Group.cpp')
-rw-r--r-- | src/game/Group.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Group.cpp b/src/game/Group.cpp index c6179ffe0b6..66b3024ff47 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -144,7 +144,7 @@ bool Group::LoadGroupFromDB(const uint64 &leaderGuid, QueryResult_AutoPtr result if (!objmgr.GetPlayerNameByGUID(m_leaderGuid, m_leaderName)) return false; - m_groupType = GroupType(fields[11].GetUInt8()); + m_groupType = GroupType((*result)[11].GetUInt8()); if (m_groupType & GROUPTYPE_RAID) _initRaidSubGroupsCounter(); |