mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-12-04 13:54:35 +01:00
Not sure why its a limit of 64 when 1.12 is 256
This commit is contained in:
parent
448febbc75
commit
a385b029dd
@ -600,8 +600,8 @@ public class FlagWatcher {
|
||||
return;
|
||||
}
|
||||
|
||||
if (name.length() > 64) {
|
||||
name = name.substring(0, 64);
|
||||
if (name.length() > 256) {
|
||||
name = name.substring(0, 256);
|
||||
}
|
||||
|
||||
if (NmsVersion.v1_13.isSupported()) {
|
||||
|
Loading…
Reference in New Issue
Block a user