mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-11-20 09:25:11 +01:00
Fix colors and organization
This commit is contained in:
parent
1007a00b26
commit
4202d47314
@ -6,13 +6,21 @@ import java.util.Date;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.ChatColor;
|
||||||
|
|
||||||
import com.gmail.filoghost.holograms.Configuration;
|
import com.gmail.filoghost.holograms.Configuration;
|
||||||
|
|
||||||
public class PlaceholdersList {
|
public class PlaceholdersList {
|
||||||
|
|
||||||
// Each 2 tenths of second
|
// Each 2 tenths of second
|
||||||
private static final Placeholder RAINBOW_TEXT = new AnimatedPlaceholder("&u", 2, new String[] {"§c", "§6", "§e", "§a", "§b", "§d"});
|
private static final Placeholder RAINBOW_TEXT = new AnimatedPlaceholder("&u", 2, new String[] {
|
||||||
|
ChatColor.RED + "",
|
||||||
|
ChatColor.GOLD + "",
|
||||||
|
ChatColor.YELLOW + "",
|
||||||
|
ChatColor.GREEN + "",
|
||||||
|
ChatColor.AQUA + "",
|
||||||
|
ChatColor.LIGHT_PURPLE + ""
|
||||||
|
});
|
||||||
|
|
||||||
// Each second
|
// Each second
|
||||||
private static final Placeholder ONLINE_PLAYERS = new Placeholder("{online}", "{o}", 10) {
|
private static final Placeholder ONLINE_PLAYERS = new Placeholder("{online}", "{o}", 10) {
|
||||||
@ -35,7 +43,7 @@ public class PlaceholdersList {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Each 60 seconds
|
// Each 60 seconds
|
||||||
private static final Placeholder MOTD = new Placeholder("{motd}", "{message_of_the_day}", 600) {
|
private static final Placeholder MOTD = new Placeholder("{motd}", "{motd}", 600) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void update() {
|
public void update() {
|
||||||
@ -54,7 +62,7 @@ public class PlaceholdersList {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Each 5 seconds, maybe has changed
|
// Each 5 seconds, maybe has changed
|
||||||
private static final Placeholder DISPLAYNAME = new AnimatedPlaceholder("{displayname}", 30, new String[]{"§f{displayname}", "§r{displayname}"});
|
private static final Placeholder DISPLAYNAME = new AnimatedPlaceholder("{displayname}", 30, new String[] {ChatColor.WHITE + "{displayname}", ChatColor.WHITE + "{displayname}"});
|
||||||
|
|
||||||
private static List<Placeholder> defaultList = Arrays.asList(RAINBOW_TEXT, ONLINE_PLAYERS, MAX_PLAYERS, TIME, DISPLAYNAME, MOTD);
|
private static List<Placeholder> defaultList = Arrays.asList(RAINBOW_TEXT, ONLINE_PLAYERS, MAX_PLAYERS, TIME, DISPLAYNAME, MOTD);
|
||||||
private static List<AnimatedPlaceholder> animatedList = new ArrayList<AnimatedPlaceholder>();
|
private static List<AnimatedPlaceholder> animatedList = new ArrayList<AnimatedPlaceholder>();
|
||||||
|
Loading…
Reference in New Issue
Block a user