Fixed BungeeGuard support (#739)

This commit is contained in:
4drian3d
2022-06-09 12:08:55 -05:00
committed by GitHub
parent 64bfa285fe
commit 74edac9642

View File

@@ -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
// forwarding mode that requires it.
if (forwardingSecret.length == 0
&& forwardingMode == PlayerInfoForwarding.MODERN
|| forwardingMode == PlayerInfoForwarding.BUNGEEGUARD) {
&& (forwardingMode == PlayerInfoForwarding.MODERN
|| forwardingMode == PlayerInfoForwarding.BUNGEEGUARD)) {
throw new RuntimeException("The forwarding-secret file must not be empty.");
}