if (args.length != 2){
sender.sendMessage(ChatColor.RED + "Usage: /" + label + " devoice <channel> <nick>");
return;
}
Channel channel = plugin.bot.getChannel(args[0]);
User user = plugin.bot.getUser(args[1]);
plugin.bot.deVoice(channel, user);
sender.sendMessage(ChatColor.GREEN + args[1] + " no longer has voice in " + args[0]);