aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/Group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Group.h b/src/game/Group.h
index 104b38c8588..aa5beac740e 100644
--- a/src/game/Group.h
+++ b/src/game/Group.h
@@ -413,7 +413,7 @@ class TRINITY_DLL_SPEC Group
for (member_witerator itr = m_memberSlots.begin(); itr != m_memberSlots.end(); ++itr)
{
if (itr->flags & flag)
- itr->flags = &= ~flag;
+ itr->flags &= ~flag;
}
}