Skip to content

Commit

Permalink
Update max name lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Jul 6, 2020
1 parent 6084f58 commit 6d19e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/citizensnpcs/api/util/SpigotUtil.java
Expand Up @@ -5,7 +5,7 @@

public class SpigotUtil {
public static int getMaxNameLength(EntityType type) {
return type == EntityType.PLAYER ? 46 : isUsing1_13API() ? 256 : 64;
return type == EntityType.PLAYER ? 256 : isUsing1_13API() ? 256 : 64;
}

public static boolean isUsing1_13API() {
Expand Down

0 comments on commit 6d19e23

Please sign in to comment.