Fixed typo in ttype and added truecolor to help text in telnet.

This commit is contained in:
mike 2024-04-08 16:28:41 -07:00
parent 686e819580
commit 5554946721
2 changed files with 2 additions and 1 deletions

View file

@ -419,6 +419,7 @@ class TelnetProtocol(Telnet, StatefulTelnetProtocol, _BASE_SESSION_CLASS):
- xterm256: Enforce xterm256 colors, regardless of TTYPE. - xterm256: Enforce xterm256 colors, regardless of TTYPE.
- noxterm256: Enforce no xterm256 color support, regardless of TTYPE. - noxterm256: Enforce no xterm256 color support, regardless of TTYPE.
- nocolor: Strip all Color, regardless of ansi/xterm256 setting. - nocolor: Strip all Color, regardless of ansi/xterm256 setting.
- truecolor: Enforce truecolor, regardless of TTYPE.
- raw: Pass string through without any ansi processing - raw: Pass string through without any ansi processing
(i.e. include Evennia ansi markers but do not (i.e. include Evennia ansi markers but do not
convert them into ansi tokens) convert them into ansi tokens)

View file

@ -44,7 +44,7 @@ class Ttype:
def __init__(self, protocol): def __init__(self, protocol):
""" """
Initialize ttype by storing protocol on ourselves and calling Initialize ttype by storing protocol on ourselves and calling
the client to see if it supporst ttype. the client to see if it supports ttype.
Args: Args:
protocol (Protocol): The protocol instance. protocol (Protocol): The protocol instance.