3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 05:20:05 +01:00

Correctly take in ChatColor length when limiting player list size. This should fix BUKKIT-571

Dieser Commit ist enthalten in:
Nathan Adams 2012-01-19 15:09:06 +00:00
Ursprung 737cf284e3
Commit 1f1c9c0d4b

Datei anzeigen

@ -148,8 +148,8 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
return;
}
if (ChatColor.stripColor(name).length() > 16) {
throw new IllegalArgumentException("Player list names can only be a maximum of 16 characters long without colour codes");
if (name.length() > 16) {
throw new IllegalArgumentException("Player list names can only be a maximum of 16 characters long");
}
// Collisions will make for invisible people