Gray team prefixes
This commit is contained in:
parent
e69aa47ce8
commit
c09b97a86e
|
@ -75,7 +75,7 @@ public abstract class ObservingParty extends MultiPlayerParty {
|
|||
@Override
|
||||
public BaseComponent getChatPrefix() {
|
||||
if(chatPrefix == null) {
|
||||
chatPrefix = new Component("(Team) ", getBungeeColor());
|
||||
chatPrefix = new Component("(Team) ", ChatColor.GRAY);
|
||||
}
|
||||
return chatPrefix;
|
||||
}
|
||||
|
|
|
@ -257,7 +257,7 @@ public class Team extends MultiPlayerParty implements Competitor, SluggedFeature
|
|||
@Override
|
||||
public BaseComponent getChatPrefix() {
|
||||
if(chatPrefix == null) {
|
||||
this.chatPrefix = new Component("(Team) ", ChatUtils.convert(getColor()));
|
||||
this.chatPrefix = new Component("(Team) ", ChatColor.GRAY);
|
||||
}
|
||||
return chatPrefix;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue