3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-16 21:10:30 +01:00

Provide link to docs on configuration error

Dieser Commit ist enthalten in:
Wafarm 2024-07-23 12:48:37 +08:00
Ursprung f099d81ae7
Commit bf755242e9
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 63A378FAC9CFCD4D

Datei anzeigen

@ -181,7 +181,8 @@ public class VelocityConfiguration implements ProxyConfig {
} }
if (requireForwardingSecret && (forwardingSecret == null || forwardingSecret.length == 0)) { if (requireForwardingSecret && (forwardingSecret == null || forwardingSecret.length == 0)) {
logger.error("You don't have a forwarding secret set. This is required for security."); logger.error("You don't have a forwarding secret set. This is required for security. "
+ "See https://docs.papermc.io/velocity/player-information-forwarding for more details.");
valid = false; valid = false;
} }