strip all color tags from faction-tagged chat messages before sending them to console/log, to de-cruft them

This commit is contained in:
Brettflan 2011-03-30 05:11:06 -05:00
parent bddcc798ce
commit e3ad9cf509
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package com.bukkit.mcteam.factions.listeners;
import java.util.List;
import java.util.logging.Logger;
import org.bukkit.ChatColor;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.block.Block;
@ -83,7 +84,7 @@ public class FactionsPlayerListener extends PlayerListener{
}
// Write to the log... We will write the non colored message.
String nonColoredMsg = String.format(nonColoredMsgFormat, talkingPlayer.getDisplayName(), msg);
String nonColoredMsg = ChatColor.stripColor(String.format(nonColoredMsgFormat, talkingPlayer.getDisplayName(), msg));
Logger.getLogger("Minecraft").info(nonColoredMsg);
} else {
// No relation color.