Remove extra semicolon

This commit is contained in:
Camotoy 2021-12-13 13:24:58 -05:00
parent 3d6dd6b8ac
commit 117ebdd9c1
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ public class PlayerEntity extends LivingEntity {
if (team != null) {
if (team.isVisibleFor(session.getPlayerEntity().getUsername())) {
TeamColor color = team.getColor();
String chatColor = MessageTranslator.toChatColor(color);;
String chatColor = MessageTranslator.toChatColor(color);
// We have to emulate what modern Java text already does for us and add the color to each section
String prefix = team.getCurrentData().getPrefix();
String suffix = team.getCurrentData().getSuffix();