#823 Change default minimum username length to 3

This commit is contained in:
Gabriele C 2016-10-23 21:45:12 +02:00
parent 3216a7ab27
commit 0fc04e2bcf

View File

@ -36,7 +36,7 @@ public class RestrictionSettings implements SettingsHolder {
@Comment("Minimum allowed username length")
public static final Property<Integer> MIN_NICKNAME_LENGTH =
newProperty("settings.restrictions.minNicknameLength", 4);
newProperty("settings.restrictions.minNicknameLength", 3);
@Comment("Maximum allowed username length")
public static final Property<Integer> MAX_NICKNAME_LENGTH =