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", "");