diff --git a/src/game/Group.cpp b/src/game/Group.cpp index d53dfd52b..29d5a345b 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -971,8 +971,8 @@ void Group::SendUpdate() WorldPacket data(SMSG_GROUP_LIST, (1+1+1+1+8+4+GetMembersCount()*20)); data << uint8(m_groupType); // group type (flags in 3.3) data << uint8(citr->group); // groupid - data << uint8(isBGGroup() ? 1 : 0); // 2.0.x, isBattleGroundGroup? data << uint8(GetFlags(*citr)); // group flags + data << uint8(isBGGroup() ? 1 : 0); // 2.0.x, isBattleGroundGroup? if(m_groupType & GROUPTYPE_LFD) { data << uint8(0); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 0bd2b1faf..d2573cacf 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9990" + #define REVISION_NR "9991" #endif // __REVISION_NR_H__