diff options
| author | 2008-05-13 16:17:30 +0000 | |
|---|---|---|
| committer | 2008-05-13 16:17:30 +0000 | |
| commit | e5e695cb411619b5252701b57f799ea66c194d50 (patch) | |
| tree | 7de00f970fec8a47d10aa76162e53a83d39e502f /src/cmd_list.cpp | |
| parent | Remove needless and pointless extra format parameter (diff) | |
Fix the format of +p channels in /list (both in core /list and in m_safelist), thanks jrm :)
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@9722 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_list.cpp')
| -rw-r--r-- | src/cmd_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_list.cpp b/src/cmd_list.cpp index 62510808a..3aa60a74b 100644 --- a/src/cmd_list.cpp +++ b/src/cmd_list.cpp @@ -67,7 +67,7 @@ CmdResult cmd_list::Handle (const char** parameters, int pcnt, userrec *user) if ((i->second->IsModeSet('p')) && (!n)) { if (users) - user->WriteServ("322 %s *",user->nick); + user->WriteServ("322 %s * %d :",user->nick, users); } else { |
