From aa6b80a7f73289f210232b6063ccac6908f22736 Mon Sep 17 00:00:00 2001 From: MemencioPerez Date: Wed, 1 Jan 2025 20:02:16 -0400 Subject: [PATCH] misc: Change the error log message that is sent when the plugin fails to forcibly disable the 'force-key-authentication' option field to be more concise --- .../io/github/_4drian3d/unsignedvelocity/UnSignedVelocity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/_4drian3d/unsignedvelocity/UnSignedVelocity.java b/src/main/java/io/github/_4drian3d/unsignedvelocity/UnSignedVelocity.java index e3d0635..01ad702 100644 --- a/src/main/java/io/github/_4drian3d/unsignedvelocity/UnSignedVelocity.java +++ b/src/main/java/io/github/_4drian3d/unsignedvelocity/UnSignedVelocity.java @@ -78,7 +78,7 @@ public void onProxyInitialize(ProxyInitializeEvent event) { getPluginLoadMessages().forEach(logger::info); checkForUpdates(); } catch (NoSuchFieldException | IllegalAccessException e) { - logger.error("The plugin cannot find or access the 'force-key-authentication' option field of the Velocity configuration. If setting 'force-key-authentication' to 'false' manually and restarting the proxy does not work, contact the developer of this plugin.", e); + logger.error("Failed to access 'force-key-authentication' option in Velocity configuration. Try setting it to 'false' manually and restarting the proxy. If the issue persists, please contact the plugin developer for assistance.", e); } catch (IOException e) { logger.error("Cannot load configuration", e); }