Fix player names not being updated properly

This commit is contained in:
libraryaddict 2021-07-08 14:26:26 +12:00
parent 70682a68bc
commit c7edea1c5e
1 changed files with 4 additions and 4 deletions

View File

@ -129,15 +129,15 @@ public class DisguiseUtilities {
team.setColor(disguise.getWatcher().getGlowColor());
}
String prefix = NmsVersion.v1_13.isSupported() ? "Colorize" : getPrefix();
String suffix = NmsVersion.v1_13.isSupported() ? "Colorize" : getSuffix();
String prefix = getPrefix();
String suffix = getSuffix();
if (!prefix.equals(team.getPrefix())) {
team.setPrefix(prefix);
team.setPrefix(NmsVersion.v1_13.isSupported() ? "Colorize" : prefix);
}
if (!suffix.equals(team.getSuffix())) {
team.setSuffix(suffix);
team.setSuffix(NmsVersion.v1_13.isSupported() ? "Colorize" : suffix);
}
}
}