mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-01 18:23:00 +00:00
Limiting the length of the name on signs to 13 instead of 14
This commit is contained in:
parent
cf4752dad6
commit
5db35458e8
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class EssentialsSign
|
|||
|
||||
private String getUsername(final User user)
|
||||
{
|
||||
return user.getName().substring(0, user.getName().length() > 14 ? 14 : user.getName().length());
|
||||
return user.getName().substring(0, user.getName().length() > 13 ? 13 : user.getName().length());
|
||||
}
|
||||
|
||||
public final boolean onSignInteract(final Block block, final Player player, final IEssentials ess)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue