diff options
author | Sadie Powell <sadie@witchery.services> | 2020-09-10 15:15:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 15:15:34 +0100 |
commit | 8180dd414ecd43758290c20315e70af72f0833bf (patch) | |
tree | 195ea018ed2d477a114b422caee94053419e77ef /modules/protocol/inspircd3.cpp | |
parent | ff28985384cb6e60fc7479f93778c4363c322ea7 (diff) |
Implement support for immutable account identifiers.
Diffstat (limited to 'modules/protocol/inspircd3.cpp')
-rw-r--r-- | modules/protocol/inspircd3.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index ec97eb0e1..de9406258 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -406,11 +406,13 @@ class InspIRCd3Proto : public IRCDProto return; UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << na->nc->display; + UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :" << na->nc->GetId(); } void SendLogout(User *u) anope_override { UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :"; + UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :"; } void SendChannel(Channel *c) anope_override |