From 8bf43797319a85db6728432ebe54c074e8600ad0 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 29 Nov 2016 11:41:39 +0100 Subject: [PATCH] Removed the html quote replacement for Telnet handling; this deals with the remainders of #1058 and was tested both with Mudlet and MUSHclient to work correctly. --- evennia/server/portal/mxp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/evennia/server/portal/mxp.py b/evennia/server/portal/mxp.py index 60df738559..996c9f3bce 100644 --- a/evennia/server/portal/mxp.py +++ b/evennia/server/portal/mxp.py @@ -38,7 +38,6 @@ def mxp_parse(text): """ text = text.replace("&", "&") \ - .replace('"', """) \ .replace("<", "<") \ .replace(">", ">")