diff options
author | XTZGZoReX <none@none> | 2009-12-23 11:46:23 +0100 |
---|---|---|
committer | XTZGZoReX <none@none> | 2009-12-23 11:46:23 +0100 |
commit | 0503fbd2b6d41c916b0d403a3f5a8c391a28609e (patch) | |
tree | c73da37afd5a70a7026a678cbe4a38dfcc9f7a76 /src | |
parent | 69def3b335f4bfd4f3a804215f96d95cdb4db760 (diff) |
* Fixed compile.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Group.h | 2 |
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; } } |