1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 09:03:12 +02:00

modified the nickserv alist command to return nc->display instead of the parameter provided by the user

This commit is contained in:
DukePyrolator
2012-10-02 05:35:44 +02:00
parent aec6cac8ca
commit 20a6f82753
+1 -1
View File
@@ -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)
{