Gray team prefixes

This commit is contained in:
Ashcon Partovi 2017-12-31 15:38:54 -07:00
parent e69aa47ce8
commit c09b97a86e
No known key found for this signature in database
GPG Key ID: 97468B9EF2123630
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ public abstract class ObservingParty extends MultiPlayerParty {
@Override @Override
public BaseComponent getChatPrefix() { public BaseComponent getChatPrefix() {
if(chatPrefix == null) { if(chatPrefix == null) {
chatPrefix = new Component("(Team) ", getBungeeColor()); chatPrefix = new Component("(Team) ", ChatColor.GRAY);
} }
return chatPrefix; return chatPrefix;
} }

View File

@ -257,7 +257,7 @@ public class Team extends MultiPlayerParty implements Competitor, SluggedFeature
@Override @Override
public BaseComponent getChatPrefix() { public BaseComponent getChatPrefix() {
if(chatPrefix == null) { if(chatPrefix == null) {
this.chatPrefix = new Component("(Team) ", ChatUtils.convert(getColor())); this.chatPrefix = new Component("(Team) ", ChatColor.GRAY);
} }
return chatPrefix; return chatPrefix;
} }