2019-08-19 01:06:47 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
@CommandPermissions(level = Rank.OP, source = SourceType.BOTH)
|
2019-08-19 07:09:06 +00:00
|
|
|
@CommandParameters(description = "Information on how to vote", usage = "/<command>")
|
2019-08-19 01:06:47 +00:00
|
|
|
public class Command_vote extends FreedomCommand
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
|
|
{
|
|
|
|
List<String> voteInfo = ConfigEntry.VOTING_INFO.getStringList();
|
|
|
|
|
|
|
|
if (voteInfo.isEmpty())
|
|
|
|
{
|
2020-03-30 23:43:57 +00:00
|
|
|
msg("The voting information section of the config.yml file has not been configured.", ChatColor.RED);
|
2019-08-19 01:06:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
msg(FUtil.colorize(StringUtils.join(voteInfo, "\n")));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|