diff options
author | bonnedav <theD_2011@hotmail.com> | 2018-06-12 00:00:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 00:00:00 -0600 |
commit | 6d592e2a0fdacaea9c5518523e2856a861d6f9df (patch) | |
tree | 50331c6f884c889fbc08336f608d70c6eeefda3f /modules/protocol/unreal4.cpp | |
parent | e03ae0cd85a85cbb3d5371b918e48b74ecc6e855 (diff) |
Unreal4 does not allow SWHOIS to come from a user source.
Diffstat (limited to 'modules/protocol/unreal4.cpp')
-rw-r--r-- | modules/protocol/unreal4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal4.cpp b/modules/protocol/unreal4.cpp index 58a370aed..744320fed 100644 --- a/modules/protocol/unreal4.cpp +++ b/modules/protocol/unreal4.cpp @@ -321,7 +321,7 @@ class UnrealIRCdProto : public IRCDProto void SendSWhois(const MessageSource &source, const Anope::string &who, const Anope::string &mask) anope_override { - UplinkSocket::Message(source) << "SWHOIS " << who << " :" << mask; + UplinkSocket::Message() << "SWHOIS " << who << " :" << mask; } void SendEOB() anope_override |