Slow down display name update

This commit is contained in:
filoghost 2014-09-03 13:36:46 +02:00
parent 4202d47314
commit 5f783684f4

View File

@ -61,8 +61,8 @@ public class PlaceholdersList {
};
// Each 5 seconds, maybe has changed
private static final Placeholder DISPLAYNAME = new AnimatedPlaceholder("{displayname}", 30, new String[] {ChatColor.WHITE + "{displayname}", ChatColor.WHITE + "{displayname}"});
// Each 10 seconds, maybe has changed
private static final Placeholder DISPLAYNAME = new AnimatedPlaceholder("{displayname}", 100, 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<AnimatedPlaceholder> animatedList = new ArrayList<AnimatedPlaceholder>();