diff options
author | Adam <Adam@anope.org> | 2016-09-30 21:06:44 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-30 21:06:44 -0400 |
commit | d8428f74b0023aaa165e4b573259e9658579e42b (patch) | |
tree | 585493b92df99a8eac334e0758e2fbf413fb86c5 /modules/nickserv/info.cpp | |
parent | ec984804292d8b05c3ce2b0a98f68f91fde004b7 (diff) |
Various find by nick fixes
Diffstat (limited to 'modules/nickserv/info.cpp')
-rw-r--r-- | modules/nickserv/info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nickserv/info.cpp b/modules/nickserv/info.cpp index 1ed8b2d23..593cfa116 100644 --- a/modules/nickserv/info.cpp +++ b/modules/nickserv/info.cpp @@ -50,7 +50,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->GetNick()); + User *u2 = User::Find(na->GetNick(), true); if (u2 && u2->Account() == na->GetAccount()) { nick_online = true; |