mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
fix stuff social links
This commit is contained in:
parent
c9a0626239
commit
1ad60c1c80
@ -19,29 +19,30 @@ public class Command_links extends FreedomCommand
|
||||
protected boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
||||
{
|
||||
ConfigurationSection section = plugin.getConfig().getConfigurationSection("social_links");
|
||||
Map<String,Object> values = section.getValues(false);
|
||||
|
||||
List<String> lines = new ArrayList<>();
|
||||
|
||||
for (String key : values.keySet())
|
||||
if (section != null)
|
||||
{
|
||||
if (!(values.get(key) instanceof String))
|
||||
Map<String, Object> values = section.getValues(false);
|
||||
|
||||
List<String> lines = new ArrayList<>();
|
||||
|
||||
for (String key : values.keySet())
|
||||
{
|
||||
continue;
|
||||
if (!(values.get(key) instanceof String))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
String link = (String) values.get(key);
|
||||
lines.add(ChatColor.GOLD + "- " + key + ": " + ChatColor.AQUA + link);
|
||||
}
|
||||
|
||||
String link = (String) values.get(key);
|
||||
|
||||
lines.add(ChatColor.GOLD + "- " + key + ": " + ChatColor.AQUA + link);
|
||||
sender.sendMessage(ChatColor.AQUA + "Social Media Links:");
|
||||
sender.sendMessage(lines.toArray(new String[0]));
|
||||
return true;
|
||||
}
|
||||
if (lines.size() == 0)
|
||||
else
|
||||
{
|
||||
lines.add(ChatColor.GOLD + "- There are no links currently added in the config.");
|
||||
sender.sendMessage(ChatColor.RED + "There are no links added in the configuration file.");
|
||||
}
|
||||
|
||||
lines.add(ChatColor.AQUA + "TotalFreedom Social Media Links:");
|
||||
sender.sendMessage(lines.toArray(new String[0]));
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user