diff options
author | Adam <Adam@anope.org> | 2016-09-30 20:44:44 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-30 20:44:44 -0400 |
commit | 479c8de569a523823dde7cfe9cd7ac31d941859b (patch) | |
tree | 1e9e0b3c20df1cff61c4fa0e72380900c230296f /modules/protocol/unreal.cpp | |
parent | 962f312fc44e832e8d230390d1603c85a36e6031 (diff) |
unreal: use uid for chghost
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 138c58807..fe5ddad2d 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -220,7 +220,7 @@ class UnrealIRCdProto : public IRCDProto if (!vIdent.empty()) Uplink::Send(Me, "CHGIDENT", u->GetUID(), vIdent); if (!vhost.empty()) - Uplink::Send(Me, "CHGHOST", u->nick, vhost); + Uplink::Send(Me, "CHGHOST", u->GetUID(), vhost); } void SendConnect() override |