mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
parent
ee7dbd56da
commit
713ec7c8d9
@ -0,0 +1,39 @@
|
||||
package me.totalfreedom.totalfreedommod.command;
|
||||
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class Command_links extends FreedomCommand {
|
||||
@Override
|
||||
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(!(values.get(key) instanceof String)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
String link = (String) values.get(key);
|
||||
|
||||
lines.add(ChatColor.GOLD + "- " + key + ": " + ChatColor.AQUA + link);
|
||||
}
|
||||
if(lines.size() == 0) {
|
||||
lines.add(ChatColor.GOLD + "- There are no links currently added in the config");
|
||||
}
|
||||
|
||||
lines.add(ChatColor.AQUA + "TotalFreedom Social Media Links:");
|
||||
sender.sendMessage(lines.toArray(new String[0]));
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
@ -61,6 +61,13 @@ forceip:
|
||||
# The kick message sent to players when logging in with the wrong hostname
|
||||
kickmsg: You have been kicked from the server - Please connect using %address%
|
||||
|
||||
# TotalFreedom Social Media Links, casing will be preserved
|
||||
social_links:
|
||||
Forum: 'https://totalfreedom.boards.net/'
|
||||
Website: 'https://totalfreedom.me/'
|
||||
Discord: 'https://discordapp.com/invite/XXjmAmV/'
|
||||
|
||||
|
||||
# Blocking certain events
|
||||
allow:
|
||||
fire_place: false
|
||||
|
Loading…
Reference in New Issue
Block a user