diff options
| author | megamage <none@none> | 2009-06-04 16:09:01 -0500 |
|---|---|---|
| committer | megamage <none@none> | 2009-06-04 16:09:01 -0500 |
| commit | 87aa7465fb2a5bb853bd75400ca947e71e076a49 (patch) | |
| tree | 062a38b67449f80e3c8198f3f3d8587c2fbfeed3 /src/game/Group.cpp | |
| parent | f6447e8f34c28785f605e2ae0882c24799d34456 (diff) | |
*A missing part of previous patch.
--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 a9d06091619..24e5601abe8 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -1197,7 +1197,7 @@ void Group::_setLeader(const uint64 &guid) void Group::_removeRolls(const uint64 &guid) { - for (Rolls::iterator it = RollId.begin(); it < RollId.end(); ++it) + for (Rolls::iterator it = RollId.begin(); it != RollId.end(); ++it) { Roll* roll = *it; Roll::PlayerVote::iterator itr2 = roll->playerVote.find(guid); |
