From: w00t Date: Mon, 9 Mar 2009 19:32:06 +0000 (+0000) Subject: Fix bug #751 (wallops are not being processed remotely), reported by Taros. X-Git-Tag: v2.0.23~2028 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=dab57412042b83cd88deba9c01f565cc5b6a0932;p=user%2Fhenk%2Fcode%2Finspircd.git Fix bug #751 (wallops are not being processed remotely), reported by Taros. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11191 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/users.cpp b/src/users.cpp index 493f44bc0..6a53c231e 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1589,9 +1589,6 @@ void User::WriteCommonExcept(const std::string &text) void User::WriteWallOps(const std::string &text) { - if (!IS_LOCAL(this)) - return; - std::string wallop("WALLOPS :"); wallop.append(text);