Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
convert every color in the name
Dieser Commit ist enthalten in:
Ursprung
7d5c59aa34
Commit
81514e4192
@ -932,11 +932,17 @@ public class Protocol1_13To1_12_2 extends Protocol {
|
|||||||
// It also overwrites for ANY colour in name but most plugins
|
// It also overwrites for ANY colour in name but most plugins
|
||||||
// will just send colour as 'invisible' character
|
// will just send colour as 'invisible' character
|
||||||
if (ChatColor.stripColor(name).length() == 0) {
|
if (ChatColor.stripColor(name).length() == 0) {
|
||||||
ChatColor color = ChatColor.getByChar(name.charAt(1));
|
StringBuilder newName = new StringBuilder();
|
||||||
String newName = SCOREBOARD_TEAM_NAME_REWRITE.get(color);
|
for (int i = 0; i < name.length() / 2; i++) {
|
||||||
if (newName != null) { // just in case
|
ChatColor color = ChatColor.getByChar(name.charAt(i * 2 + 1));
|
||||||
name = newName;
|
String rewrite = SCOREBOARD_TEAM_NAME_REWRITE.get(color);
|
||||||
|
if (rewrite != null) { // just in case, should never happen
|
||||||
|
newName.append(rewrite);
|
||||||
|
} else {
|
||||||
|
newName.append(name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
name = newName.toString();
|
||||||
}
|
}
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren