diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-23 21:09:49 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-23 21:09:49 +0000 |
commit | 594d430ee457b621c731a6cc70d84c02c295d59c (patch) | |
tree | afc623183cb5f239afcb2050087611b992ee0b87 /src/modules/m_spy.cpp | |
parent | 1b87725fef508089024ffaf3d7dd0818c1c9a417 (diff) |
More prefixchar stuff.
WARNING: 005 numeric is broken in this commit.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5000 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spy.cpp')
-rw-r--r-- | src/modules/m_spy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp index 55b3a650c..410d9b732 100644 --- a/src/modules/m_spy.cpp +++ b/src/modules/m_spy.cpp @@ -57,7 +57,7 @@ void spy_userlist(userrec *user,chanrec *c) CUList *ulist= c->GetUsers(); for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++) { - strlcat(list,c->GetStatusChar(i->second),MAXBUF); + strlcat(list,c->GetPrefixChar(i->second),MAXBUF); strlcat(list,i->second->nick,MAXBUF); strlcat(list," ",MAXBUF); if (strlen(list)>(480-NICKMAX)) |