diff --git a/MCGalaxy/Chat/ProfanityFilter.cs b/MCGalaxy/Chat/ProfanityFilter.cs index f22bf8222..7def51e78 100644 --- a/MCGalaxy/Chat/ProfanityFilter.cs +++ b/MCGalaxy/Chat/ProfanityFilter.cs @@ -89,6 +89,8 @@ namespace MCGalaxy { static string Reduce(string text) { text = text.ToLower(); + text = Colors.Strip(text); + for (int i = 0; i < reduceKeys.Length; i++) text = text.Replace(reduceKeys[i], reduceValues[i]); return text;