3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-06 00:00:47 +01:00

Fixed BungeeGuard support (#739)

Dieser Commit ist enthalten in:
4drian3d 2022-06-09 12:08:55 -05:00 committet von GitHub
Ursprung 64bfa285fe
Commit 74edac9642
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -514,8 +514,8 @@ public class VelocityConfiguration implements ProxyConfig {
// Throw an exception if the forwarding-secret file is empty and the proxy is using a // Throw an exception if the forwarding-secret file is empty and the proxy is using a
// forwarding mode that requires it. // forwarding mode that requires it.
if (forwardingSecret.length == 0 if (forwardingSecret.length == 0
&& forwardingMode == PlayerInfoForwarding.MODERN && (forwardingMode == PlayerInfoForwarding.MODERN
|| forwardingMode == PlayerInfoForwarding.BUNGEEGUARD) { || forwardingMode == PlayerInfoForwarding.BUNGEEGUARD)) {
throw new RuntimeException("The forwarding-secret file must not be empty."); throw new RuntimeException("The forwarding-secret file must not be empty.");
} }