diff options
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 be7e9af5135..8f79f94697c 100644 --- a/src/game/Group.cpp +++ b/src/game/Group.cpp @@ -1112,7 +1112,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); |