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/cmd_who.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/cmd_who.cpp')
-rw-r--r-- | src/cmd_who.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index 745e5db15..6f52ebb63 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -150,7 +150,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user) wholine.append("*"); } - wholine = wholine + ch->GetStatusChar(i->second) + " :0 " + i->second->fullname; + wholine = wholine + ch->GetPrefixChar(i->second) + " :0 " + i->second->fullname; whoresults.push_back(wholine); } } @@ -188,7 +188,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user) wholine.append("*"); } - wholine = wholine + ch->GetStatusChar(oper) + " :0 " + oper->fullname; + wholine = wholine + ch->GetPrefixChar(oper) + " :0 " + oper->fullname; whoresults.push_back(wholine); } } @@ -220,7 +220,7 @@ void cmd_who::Handle (const char** parameters, int pcnt, userrec *user) wholine.append("*"); } - wholine = wholine + ch->GetStatusChar(i->second) + " :0 " + i->second->fullname; + wholine = wholine + ch->GetPrefixChar(i->second) + " :0 " + i->second->fullname; whoresults.push_back(wholine); } } |