Merge remote-tracking branch 'origin/1.6.x' into 1.6.x

This commit is contained in:
ProSavage 2018-12-06 16:11:32 -06:00
commit c58ed305a8
1 changed files with 3 additions and 7 deletions

View File

@ -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);