From 6a4ce9b855551f09789659b6f7b4babbd4b65bf6 Mon Sep 17 00:00:00 2001 From: UplandJacob <123428589+UplandJacob@users.noreply.github.com> Date: Wed, 1 Jan 2025 19:13:59 -0600 Subject: [PATCH] Update comments in ProtectionSettings.java --- .../authme/settings/properties/ProtectionSettings.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java b/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java index 2c4f3431b..5b48b3a47 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java @@ -24,14 +24,14 @@ public final class ProtectionSettings implements SettingsHolder { public static final Property ENABLE_GEOIP = newProperty("Protection.geoIpDatabase.enabled", true); - @Comment({"The MaxMind clientId used to download the GeoIp database,", - "get one at https://www.maxmind.com/en/accounts/current/license-key", - "The EssentialsX project has a very useful tutorial on how to generate", - "the license key: https://github.com/EssentialsX/Wiki/blob/master/GeoIP.md"}) + @Comment({"Get the information needed for the GeoIP database at https://www.maxmind.com/en/accounts/current/license-key", + "This EssentialsX project has a very useful tutorial on how to generate it:", + "https://github.com/EssentialsX/Website/blob/master/pages/wiki/GeoIP.md", + "The MaxMind clientId called 'Account ID' on the 'Manage License Keys' page:"}) public static final Property MAXMIND_API_CLIENT_ID = newProperty("Protection.geoIpDatabase.clientId", ""); - @Comment("The MaxMind licenseKey used to download the GeoIp database.") + @Comment("The MaxMind licenseKey you generated on the MaxMind website:") public static final Property MAXMIND_API_LICENSE_KEY = newProperty("Protection.geoIpDatabase.licenseKey", "");