summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-02-16 15:24:55 +0000
committerPeter Powell <petpow@saberuk.com>2019-02-16 15:24:55 +0000
commitb6e548d8dfb933d8329ea7aed2357c88ecaf2e79 (patch)
treed36c480104b41d200388d7a44f9755dc9c31e378 /src/modules
parent6daf442c77b411517ff656e543f5ecec02384ce8 (diff)
ircv3_chghost: also send the CHGHOST message to the modified user.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_ircv3_chghost.cpp2
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: