diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 427633ef4..2e4ae0d8f 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -239,7 +239,7 @@ bool ip_matches_everyone(const std::string &ip, userrec* user) for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++) { - if (match(u->second->GetIPString(),ip.c_str())) + if (match(u->second->GetIPString(),ip.c_str(),true)) matches++; } |