Improved config comments for island name related settings

This commit is contained in:
Florian CUNY 2019-08-28 13:45:38 +02:00
parent 9dafeb1d19
commit d41f35e58d
1 changed files with 2 additions and 1 deletions

View File

@ -143,9 +143,10 @@ public class Settings implements ConfigObject {
@ConfigEntry(path = "island.confirmation.commands.reset")
private boolean resetConfirmation = true;
@ConfigComment("These set the minimum and maximum size of a name.")
@ConfigComment("Sets the minimum length an island custom name is required to have.")
@ConfigEntry(path = "island.name.min-length")
private int nameMinLength = 4;
@ConfigComment("Sets the maximum length an island custom name cannot exceed.")
@ConfigEntry(path = "island.name.max-length")
private int nameMaxLength = 20;