Exemplo n.º 1
0
 public void On( NickEvent     e )
 {
     if ( e.Who.Nick == CurrentNickname ) {
         CurrentNickname = e.NewNickname; // We changed our name (successfully)
     } else foreach ( var channel in Channels ) foreach ( var person in channel.Value.People ) if ( person.NUH.Nick==e.Who.Nick ) {
         person.NUH = e.Who;
         person.NUH.Nick = e.NewNickname;
     }
 }
Exemplo n.º 2
0
 public void On( NickEvent     e )
 {
 }