diff options
author | Peter Powell <petpow@saberuk.com> | 2019-02-16 15:24:55 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-16 15:24:55 +0000 |
commit | b6e548d8dfb933d8329ea7aed2357c88ecaf2e79 (patch) | |
tree | d36c480104b41d200388d7a44f9755dc9c31e378 /src | |
parent | 6daf442c77b411517ff656e543f5ecec02384ce8 (diff) |
ircv3_chghost: also send the CHGHOST message to the modified user.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_ircv3_chghost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3_chghost.cpp b/src/modules/m_ircv3_chghost.cpp index fd142803f..d78689178 100644 --- a/src/modules/m_ircv3_chghost.cpp +++ b/src/modules/m_ircv3_chghost.cpp @@ -32,7 +32,7 @@ class ModuleIRCv3ChgHost : public Module msg.PushParamRef(ident); msg.PushParamRef(host); ClientProtocol::Event protoev(protoevprov, msg); - IRCv3::WriteNeighborsWithCap(user, protoev, cap); + IRCv3::WriteNeighborsWithCap(user, protoev, cap, true); } public: |