Package net.bnubot.bot.commands

Examples of net.bnubot.bot.commands.Vote


    if(bnSubject == null) {
      user.sendChat("User not found", whisperBack);
      return;
    }

    Vote v = new Vote(source, bnSubject, isBan);
    votes.put(source, v);
  }
View Full Code Here


  @Override
  public void channelLeave(Connection source, BNetUser user) {
    touchUser(source, user, "leaving the channel");

    Vote vote = votes.get(source);
    if((vote != null) && vote.getSubject().equals(user))
      vote.cancel();
  }
View Full Code Here

TOP

Related Classes of net.bnubot.bot.commands.Vote

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.