Beispiel #1
0
 void OnPart(UserInfo user, string channel, string reason)
 {
     nicks.OnLeftChannel(user, channel);
     if (user.Nick == nick)
     {
         return;
     }
     AnnounceJoinLeave(user.Nick, "left", channel);
 }
Beispiel #2
0
        void OnPart(string user, string channel, string reason)
        {
            string nick = Connection.ExtractNick(user);

            nicks.OnLeftChannel(nick, channel);

            if (nick == botNick)
            {
                return;
            }
            AnnounceJoinLeave(nick, "left", channel);
        }