From f31ce528ab0264cacbdb96308120fb0079555dfa Mon Sep 17 00:00:00 2001 From: crabman77 Date: Tue, 27 Dec 2016 00:31:21 +0100 Subject: [PATCH] do not remove utf characters, issue https://github.com/MinetestForFun/irc_modpack/issues/2 --- irc/hooks.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/hooks.lua b/irc/hooks.lua index 6c8e243..61acd44 100644 --- a/irc/hooks.lua +++ b/irc/hooks.lua @@ -19,7 +19,7 @@ local function normalize(text) -- Strip colors text = text:gsub("\3[0-9][0-9,]*", "") - return text:gsub(stripped_chars, "") + return text --:gsub(stripped_chars, "") end