diff options
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); } } |