diff --git a/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/Motd.java b/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/Motd.java index 5ebe44ee5..e3ae9114b 100644 --- a/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/Motd.java +++ b/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/Motd.java @@ -97,7 +97,7 @@ public class Motd implements CustomMotd initialHandler.getChannelWrapper().getHandle().close(); } } - }, 0, 160, TimeUnit.MILLISECONDS); + }, 0, 200, TimeUnit.MILLISECONDS); } private String getDesc() @@ -121,8 +121,8 @@ public class Motd implements CustomMotd List lines = _manager.getMotdLines(); if (lines != null && lines.size() > 0) { - int index = _ticks / (MAX_TICKS / lines.size()); - String currentLine = index >= lines.size() ? lines.get(0) : lines.get(index); + int index = _ticks / (MAX_TICKS / (lines.size()-1)); + String currentLine = index >= lines.size() ? lines.get(lines.size() - 1) : lines.get(index); desc += "\n" + currentLine; } diff --git a/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/MotdRepository.java b/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/MotdRepository.java index 9ed4dcbe4..d3d4e74a7 100644 --- a/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/MotdRepository.java +++ b/Plugins/Mineplex.Bungee.Mineplexer/src/mineplex/bungee/motd/MotdRepository.java @@ -59,8 +59,8 @@ public class MotdRepository { // String motd = "§b§l§m §8§l§m[ §r §9§lMineplex§r §f§lGames§r §8§l§m ]§b§l§m §r §c§l§m§kZ§6§l§m§kZ§e§l§m§kZ§a§l§m§kZ§b§l§m§kZ§r §f§lPLAY NOW§r §b§l§m§kZ§a§l§m§kZ§e§l§m§kZ§6§l§m§kZ§c§l§m§kZ"; ArrayList lines = new ArrayList(); - lines.add(" " + ChatColor.WHITE + " " + ChatColor.RED + ChatColor.BOLD + " Christmas Chaos " + ChatColor.RESET + ChatColor.WHITE + " "); - lines.add(" " + ChatColor.AQUA + ChatColor.BOLD + "33% Off Everything!"); + lines.add(" " + ChatColor.WHITE + ChatColor.BOLD + "New Game" + ChatColor.RED + ChatColor.BOLD + " Christmas Chaos"); + lines.add(" " + ChatColor.WHITE + ChatColor.BOLD + "Winter Sale" + ChatColor.BLUE + ChatColor.BOLD + " 33% Off Everything"); lines.add(" " + ChatColor.GOLD + ChatColor.BOLD + "Chisspie!"); return lines;