mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 21:39:21 +00:00
tweak default setting for max nick length
This commit is contained in:
parent
2ad346e84c
commit
e57aa0e088
2 changed files with 3 additions and 3 deletions
|
@ -1103,6 +1103,6 @@ public class Settings implements ISettings
|
||||||
@Override
|
@Override
|
||||||
public int getMaxNickLength()
|
public int getMaxNickLength()
|
||||||
{
|
{
|
||||||
return config.getInt("max-nick-length", 16);
|
return config.getInt("max-nick-length", 30);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,8 +25,8 @@ ops-name-color: '4'
|
||||||
# The character(s) to prefix all nicknames, so that you know they are not true usernames.
|
# The character(s) to prefix all nicknames, so that you know they are not true usernames.
|
||||||
nickname-prefix: '~'
|
nickname-prefix: '~'
|
||||||
|
|
||||||
# The maximum length allowed in nicknames. The prefix is not included in this.
|
# The maximum length allowed in nicknames. The nickname prefix is included in this.
|
||||||
max-nick-length: 16
|
max-nick-length: 15
|
||||||
|
|
||||||
# Disable this if you have any other plugin, that modifies the displayname of a user.
|
# Disable this if you have any other plugin, that modifies the displayname of a user.
|
||||||
change-displayname: true
|
change-displayname: true
|
||||||
|
|
Loading…
Reference in a new issue