geforkt von Mirrors/Velocity
Fix #887
Velocity always handled ALL as an alias of ONLINE, so handle ONLINE the same way.
Dieser Commit ist enthalten in:
Ursprung
495b796816
Commit
1ec77eb123
@ -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)) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren