Fix colors

This commit is contained in:
filoghost 2014-09-03 13:32:01 +02:00
parent 0aa687af2a
commit 1007a00b26

View File

@ -12,7 +12,7 @@ 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[] {"§c", "§6", "§e", "§a", "§b", "§d"});
// 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) {
@ -54,7 +54,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[]{"§f{displayname}", "§r{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>();