Changeset e4a7d37f518827991e7052f0f8411de7f1d6e6fd

Show
Ignore:
Timestamp:
01/06/07 23:48:58 (6 years ago)
Author:
Philipp Kern <phil@…>
Parents:
c1133598c9764ca198b656ba329247b62f05d21c
Children:
2fe47aed9e6b48d212f996f025a5e423bea91e0e
git-committer:
Philipp Kern <phil@0x539.de> / 2007-01-06T22:48:58Z+0000
Message:

[project @ Do not show disconnected users as joined in chat]

Original author: Philipp Kern <phil@…>
Date: 2005-10-01 14:50:31+00:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/chat.cpp

    r4a2cffc re4a7d37  
    8181void Gobby::Chat::obby_user_join(const obby::user& user) 
    8282{ 
     83        if(~user.get_flags() & obby::user::flags::CONNECTED) 
     84                return; 
     85 
    8386        obby::format_string str(_("%0% has joined") ); 
    8487        str << user.get_name();