diff options
-rw-r--r-- | src/cull_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp index ff763dfd7..b8a48b1f1 100644 --- a/src/cull_list.cpp +++ b/src/cull_list.cpp @@ -73,7 +73,7 @@ CullList::CullList() void CullList::AddItem(userrec* user, std::string reason) { - if (exempt.find(user) != exempt.end()) + if (exempt.find(user) == exempt.end()) { CullItem item(user,reason); list.push_back(item); |