mirror of
https://github.com/evennia/evennia.git
synced 2026-03-28 02:36:32 +01:00
Fixed a bug in ansi string caching that didn't take mxp into account.
This commit is contained in:
parent
eb598921ac
commit
8d37627dfe
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ class ANSIParser(object):
|
|||
|
||||
# check cached parsings
|
||||
global _PARSE_CACHE
|
||||
cachekey = "%s-%s-%s" % (string, strip_ansi, xterm256)
|
||||
cachekey = "%s-%s-%s-%s" % (string, strip_ansi, xterm256, mxp)
|
||||
if cachekey in _PARSE_CACHE:
|
||||
return _PARSE_CACHE[cachekey]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue