diff options
author | Adam <Adam@anope.org> | 2016-01-19 08:30:35 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-01-19 08:30:35 -0500 |
commit | 4771af1cb89cd5d9a983d83e108b9fb8de9b5f52 (patch) | |
tree | cb15a43d350f5fa325d2030b69849e05b09a39ee /modules/commands/ns_info.cpp | |
parent | 9c9df2ad1fc8e8f03f4b28d21b4dcc2895d3795c (diff) |
Couple user find by nick fixes
Diffstat (limited to 'modules/commands/ns_info.cpp')
-rw-r--r-- | modules/commands/ns_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_info.cpp b/modules/commands/ns_info.cpp index 443b6a9b7..692c4abf3 100644 --- a/modules/commands/ns_info.cpp +++ b/modules/commands/ns_info.cpp @@ -40,7 +40,7 @@ class CommandNSInfo : public Command bool nick_online = false, show_hidden = false; /* Is the real owner of the nick we're looking up online? -TheShadow */ - User *u2 = User::Find(na->nick); + User *u2 = User::Find(na->nick, true); if (u2 && u2->Account() == na->nc) { nick_online = true; |