*A missing part of previous patch.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-06-04 16:09:01 -05:00
parent f6447e8f34
commit 87aa7465fb
3 changed files with 4 additions and 4 deletions

View File

@@ -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);