Lets break past the limits of mortal strings, it's not always 16 chars!
This commit is contained in:
parent
1c0c5100c5
commit
5119358252
@ -222,8 +222,10 @@ public class PlayerDisguise extends TargetedDisguise {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!DisguiseConfig.isExtendedDisguiseNames() && name.length() > 16) {
|
int cLimit = DisguiseConfig.isExtendedDisguiseNames() ? 16 * 3 :
|
||||||
name = name.substring(0, 16);
|
DisguiseConfig.isScoreboardDisguiseNames() ? 16 * 2 : 16;
|
||||||
|
if (!DisguiseConfig.isExtendedDisguiseNames() && name.length() > cLimit) {
|
||||||
|
name = name.substring(0, cLimit);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isDisguiseInUse()) {
|
if (isDisguiseInUse()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user