diff --git a/proxy/src/main/java/com/velocitypowered/proxy/connection/backend/BungeeCordMessageResponder.java b/proxy/src/main/java/com/velocitypowered/proxy/connection/backend/BungeeCordMessageResponder.java index 74a04fa1a..12ff5bdc7 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/connection/backend/BungeeCordMessageResponder.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/connection/backend/BungeeCordMessageResponder.java @@ -269,7 +269,7 @@ public class BungeeCordMessageResponder { ByteBuf toForward = in.unwrap().copy(); final ServerInfo currentUserServer = player.getCurrentServer() .map(ServerConnection::getServerInfo).orElse(null); - if (target.equals("ALL")) { + if (target.equals("ALL") || target.equals("ONLINE")) { try { for (RegisteredServer rs : proxy.getAllServers()) { if (!rs.getServerInfo().equals(currentUserServer)) {