public void tellVoteStop(CSteamID steamID, byte message)
 {
     if (base.channel.checkServer(steamID))
     {
         ChatManager.needsVote = false;
         if (ChatManager.onVotingStop != null)
         {
             ChatManager.onVotingStop((EVotingMessage)message);
         }
     }
 }