diff options
-rw-r--r-- | src/cull_list.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp index 2b6e4578c..a1881fe3d 100644 --- a/src/cull_list.cpp +++ b/src/cull_list.cpp @@ -35,9 +35,8 @@ void CullList::MakeSilent(User* user) int CullList::Apply() { int n = list.size(); - int i = 0; - while (list.size() && i++ != 100) + while (list.size()) { std::vector<User *>::iterator a = list.begin(); |