diff --git a/evennia/contrib/base_systems/godotwebsocket/text2bbcode.py b/evennia/contrib/base_systems/godotwebsocket/text2bbcode.py index 664e107ba8..635fb6bd9e 100644 --- a/evennia/contrib/base_systems/godotwebsocket/text2bbcode.py +++ b/evennia/contrib/base_systems/godotwebsocket/text2bbcode.py @@ -536,6 +536,6 @@ BBCODE_PARSER = TextToBBCODEparser() def parse_to_bbcode(string, strip_ansi=False, parser=BBCODE_PARSER): """ - Parses a string, replace ANSI markup with html + Parses a string, replace ANSI markup with bbcode """ return parser.parse(string, strip_ansi=strip_ansi)