diff --git a/bungeecord/src/main/java/me/neznamy/tab/platforms/bungeecord/BungeeTAB.java b/bungeecord/src/main/java/me/neznamy/tab/platforms/bungeecord/BungeeTAB.java index 43ae946ea..0ce6f88ec 100644 --- a/bungeecord/src/main/java/me/neznamy/tab/platforms/bungeecord/BungeeTAB.java +++ b/bungeecord/src/main/java/me/neznamy/tab/platforms/bungeecord/BungeeTAB.java @@ -14,9 +14,11 @@ public void onEnable() { if (ReflectionUtils.classExists("net.md_5.bungee.protocol.packet.Team$NameTagVisibility")) { TAB.create(new BungeePlatform(this)); } else { + getLogger().warning("§c===================================================================================================="); getLogger().warning("§cThe plugin requires BungeeCord build #1899 " + "(released on February 1st, 2025) and up (or an equivalent fork) to work. If you are using a fork that did not" + " update to the new BungeeCord version yet, stay on TAB v5.0.5, which supports older builds."); + getLogger().warning("§c===================================================================================================="); } } diff --git a/velocity/src/main/java/me/neznamy/tab/platforms/velocity/VelocityTAB.java b/velocity/src/main/java/me/neznamy/tab/platforms/velocity/VelocityTAB.java index 24cc51e33..7ce25314a 100644 --- a/velocity/src/main/java/me/neznamy/tab/platforms/velocity/VelocityTAB.java +++ b/velocity/src/main/java/me/neznamy/tab/platforms/velocity/VelocityTAB.java @@ -55,7 +55,9 @@ public class VelocityTAB { @Subscribe public void onProxyInitialization(@Nullable ProxyInitializeEvent event) { if (!ReflectionUtils.methodExists(TabListEntry.class, "setListOrder", int.class)) { + logger.warn("===================================================================================================="); logger.warn("The plugin requires Velocity build #450 (released on November 10th, 2024) and up to work."); + logger.warn("===================================================================================================="); return; } TAB.create(new VelocityPlatform(this));