diff options
author | TingPing <tingping@tingping.se> | 2013-11-28 05:00:34 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2013-11-28 05:01:40 -0500 |
commit | 407613a8dbe52f465867b782ffd68ef76de43b55 (patch) | |
tree | 35e3e381c32363d3af7e9566921457f3e7a6fb5e | |
parent | ae4e55b9220b906d156aba77e958115af7474de5 (diff) |
Fix NAMES command syntax
-rw-r--r-- | src/common/outbound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index 4321887f..96425f8f 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -3977,8 +3977,8 @@ const struct commands xc_cmds[] = { N_("MOP, Mass op's all users in the current channel (needs chanop)")}, {"MSG", cmd_msg, 0, 0, 1, N_("MSG <nick> <message>, sends a private message, message \".\" to send to last nick or prefix with \"=\" for dcc chat")}, - {"NAMES [channel]", cmd_names, 1, 0, 1, - N_("NAMES, Lists the nicks on the channel")}, + {"NAMES", cmd_names, 1, 0, 1, + N_("NAMES [channel], Lists the nicks on the channel")}, {"NCTCP", cmd_nctcp, 1, 0, 1, N_("NCTCP <nick> <message>, Sends a CTCP notice")}, {"NEWSERVER", cmd_newserver, 0, 0, 1, N_("NEWSERVER [-noconnect] <hostname> [<port>]")}, |