diff options
| author | 2007-05-12 20:55:43 +0000 | |
|---|---|---|
| committer | 2007-05-12 20:55:43 +0000 | |
| commit | 3dc2055bb03658cb2a1ecab7177519290f8532af (patch) | |
| tree | 26d49f5e31d6dd035d6433cfbfa29e117f620ab6 /src/cmd_who.cpp | |
| parent | The commit that should have been r7000: src/modules now uses IS_OPER instead ... (diff) | |
| download | inspircd++-3dc2055bb03658cb2a1ecab7177519290f8532af.tar.gz inspircd++-3dc2055bb03658cb2a1ecab7177519290f8532af.tar.bz2 inspircd++-3dc2055bb03658cb2a1ecab7177519290f8532af.zip | |
While I'm on the macro warpath: start using IS_AWAY. Also, show the away message all the time, don't check IS_LOCAL. We used to not propegate away messages, but that hasn't been the case for ..fucking years? :p. WHOIS works correctly.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7002 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_who.cpp')
| -rw-r--r-- | src/cmd_who.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index bdbca597e..de504faf2 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -147,7 +147,7 @@ void cmd_who::SendWhoLine(userrec* user, const std::string &initial, chanrec* ch " " + u->nick + " "; /* away? */ - if (*u->awaymsg) + if (IS_AWAY(u)) { wholine.append("G"); } |
