mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 10:26:28 +01:00
Core/Group: Fix LoadGroupFromDB type-error
This commit is contained in:
@@ -171,7 +171,7 @@ void Group::LoadGroupFromDB(Field* fields)
|
||||
|
||||
m_lootMethod = LootMethod(fields[1].GetUInt8());
|
||||
m_looterGuid = MAKE_NEW_GUID(fields[2].GetUInt32(), 0, HIGHGUID_PLAYER);
|
||||
m_lootThreshold = ItemQualities(fields[3].GetUInt16());
|
||||
m_lootThreshold = ItemQualities(fields[3].GetUInt8());
|
||||
|
||||
for (uint8 i = 0; i < TARGETICONCOUNT; ++i)
|
||||
m_targetIcons[i] = fields[4+i].GetUInt32();
|
||||
|
||||
Reference in New Issue
Block a user