diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-09 19:32:06 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-09 19:32:06 +0000 |
commit | dab57412042b83cd88deba9c01f565cc5b6a0932 (patch) | |
tree | f5dae10d6723f777691b5d062b022b6d2514f503 /src | |
parent | 38c8e09fb60f34615b2fc42c536e167dfadfbda7 (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/users.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
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); |