1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 21:46:39 +02:00

Fix SVSNICK target being a nick even when UIDs are available

This commit is contained in:
Attila Molnar
2014-04-19 14:35:50 +02:00
parent ba46b8e4ab
commit e36f8143e3
+1 -1
View File
@@ -276,7 +276,7 @@ void IRCDProto::SendNickChange(User *u, const Anope::string &newnick)
void IRCDProto::SendForceNickChange(User *u, const Anope::string &newnick, time_t when)
{
UplinkSocket::Message() << "SVSNICK " << u->nick << " " << newnick << " " << when;
UplinkSocket::Message() << "SVSNICK " << u->GetUID() << " " << newnick << " " << when;
}
void IRCDProto::SendCTCP(const MessageSource &source, const Anope::string &dest, const char *fmt, ...)