diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 77642ba04..63edc153e 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1624,7 +1624,7 @@ void userrec::WriteWallOps(const std::string &text) for (std::vector<userrec*>::const_iterator i = ServerInstance->local_users.begin(); i != ServerInstance->local_users.end(); i++) { userrec* t = *i; - if ((IS_LOCAL(t)) && (t->modes[UM_WALLOPS])) + if (t->modes[UM_WALLOPS]) this->WriteTo(t,wallop); } } |