diff --git a/client/scripts/WebConsole.js b/client/scripts/WebConsole.js index 6cb6087..6ecb9bb 100644 --- a/client/scripts/WebConsole.js +++ b/client/scripts/WebConsole.js @@ -139,6 +139,12 @@ function writeToWebConsole(msg){ msg = msg.replace(/§d/g, ""); //&d msg = msg.replace(/§e/g, ""); //&e msg = msg.replace(/§f/g, ""); //&f + + msg = msg.replace(/§l/g, ""); //&l + msg = msg.replace(/§m/g, ""); //&m + msg = msg.replace(/§n/g, ""); //&n + msg = msg.replace(/§o/g, ""); //&o + msg = msg.replace(/§r/g, ""); //&r $("#consoleTextArea").append(msg + "
");