commit
0c626e74cd
@ -179,10 +179,6 @@ public class FactionsChatListener implements Listener {
|
||||
|
||||
// Relation Colored?
|
||||
if (Conf.chatTagRelationColored) {
|
||||
// Messages are sent to players individually
|
||||
// This still leaves a chance for other plugins to pick it up
|
||||
event.setCancelled(true);
|
||||
|
||||
for (Player listeningPlayer : event.getRecipients()) {
|
||||
FPlayer you = FPlayers.getInstance().getByPlayer(listeningPlayer);
|
||||
String yourFormat = formatStart + me.getChatTag(you).trim() + formatEnd;
|
||||
@ -197,9 +193,9 @@ public class FactionsChatListener implements Listener {
|
||||
}
|
||||
}
|
||||
|
||||
// Write to the log... We will write the non colored message.
|
||||
String nonColoredMsg = ChatColor.stripColor(String.format(nonColoredMsgFormat, talkingPlayer.getDisplayName(), msg));
|
||||
Bukkit.getLogger().log(Level.INFO, nonColoredMsg);
|
||||
// Messages are sent to players individually
|
||||
// This still leaves a chance for other plugins to pick it up
|
||||
event.getRecipients().clear();
|
||||
}
|
||||
// Message with no relation color.
|
||||
event.setFormat(nonColoredMsgFormat);
|
||||
|
Loading…
Reference in New Issue
Block a user