diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2012-10-02 05:35:44 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2012-10-02 05:35:44 +0200 |
commit | 20a6f827539f0fe5537e83aecc6ed1641bb0acdf (patch) | |
tree | 4220fc4dc406a5762929d0bbef174d0b2cb54bba | |
parent | aec6cac8caa645d4e6a9fed42ca1d7e2f3c5057a (diff) |
modified the nickserv alist command to return nc->display instead of the parameter provided by the user
-rw-r--r-- | modules/commands/ns_alist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_alist.cpp b/modules/commands/ns_alist.cpp index 4b7e7cb33..ef018ea8b 100644 --- a/modules/commands/ns_alist.cpp +++ b/modules/commands/ns_alist.cpp @@ -44,7 +44,7 @@ class CommandNSAList : public Command list.addColumn("Number").addColumn("Channel").addColumn("Access"); - source.Reply(_("Channels that \002%s\002 has access on:"), nick.c_str()); + source.Reply(_("Channels that \002%s\002 has access on:"), nc->display.c_str()); for (registered_channel_map::const_iterator it = RegisteredChannelList->begin(), it_end = RegisteredChannelList->end(); it != it_end; ++it) { |