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::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); } }