Gray team prefixes
This commit is contained in:
parent
e69aa47ce8
commit
c09b97a86e
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue