From c991671fe52e251ccd6b0e35c498951c737d39fd Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 22 Sep 2017 13:43:40 +1000 Subject: [PATCH] fix minor mistake in reduce keys of profanity filter --- MCGalaxy/Chat/ProfanityFilter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MCGalaxy/Chat/ProfanityFilter.cs b/MCGalaxy/Chat/ProfanityFilter.cs index 2c6ed8f3d..f22bf8222 100644 --- a/MCGalaxy/Chat/ProfanityFilter.cs +++ b/MCGalaxy/Chat/ProfanityFilter.cs @@ -62,9 +62,9 @@ namespace MCGalaxy { static void InitReduceTable() { if (reduceKeys != null) return; // Because some letters are similar (Like i and l), they are reduced to the same form. - // For example, the word "@t3$5t ll" is reduced to "atest ii"; - reduceKeys = "@|i3|l3|(|3|ph|6|#|l|!|1|0|9|$5|vv|2".Split('|'); - reduceValues= "a|b|b|c|e|f|g|h|i|i|i|o|q|s|w|z".Split('|'); + // For example, the word "@t3$5t ll" is reduced to "atesst ii"; + reduceKeys = "@|i3|l3|(|3|ph|6|#|l|!|1|0|9|$|5|vv|2".Split('|'); + reduceValues= "a|b|b|c|e|f|g|h|i|i|i|o|q|s|s|w|z".Split('|'); } static void LoadBadWords() {