diff --git a/docs/config.md b/docs/config.md index 67dd90d2..f51048bc 100644 --- a/docs/config.md +++ b/docs/config.md @@ -1,5 +1,5 @@ - + ## AuthMe Configuration The first time you run AuthMe it will create a config.yml file in the plugins/AuthMe folder, @@ -401,6 +401,8 @@ Protection: geoIpDatabase: # 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://essentialsx.cf/wiki/GeoIP.html clientId: '' # The MaxMind licenseKey used to download the GeoIp database. licenseKey: '' @@ -582,4 +584,4 @@ To change settings on a running server, save your changes to config.yml and use --- -This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Mon Jan 20 14:16:50 CET 2020 +This page was automatically generated on the [AuthMe/AuthMeReloaded repository](https://github.com/AuthMe/AuthMeReloaded/tree/master/docs/) on Tue Jan 21 10:33:12 CET 2020 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 f58e972a..6f573084 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/ProtectionSettings.java @@ -21,7 +21,9 @@ public final class ProtectionSettings implements SettingsHolder { newProperty("Protection.enableProtectionRegistered", true); @Comment({"The MaxMind clientId used to download the GeoIp database,", - "get one at https://www.maxmind.com/en/accounts/current/license-key"}) + "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://essentialsx.cf/wiki/GeoIP.html"}) public static final Property MAXMIND_API_CLIENT_ID = newProperty("Protection.geoIpDatabase.clientId", "");