From 20a6f827539f0fe5537e83aecc6ed1641bb0acdf Mon Sep 17 00:00:00 2001 From: DukePyrolator Date: Tue, 2 Oct 2012 05:35:44 +0200 Subject: [PATCH] modified the nickserv alist command to return nc->display instead of the parameter provided by the user --- modules/commands/ns_alist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {