Update __init__.py
This commit is contained in:
parent
7242d48c35
commit
2d6c60eaf5
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ class IRCSession: # Actual IRC session
|
|||
if spaced[1] == "NOTICE":
|
||||
cache.append(SystemMessage(content=" ".join(spaced[3:])[1:],user=User(name=spaced[0][1:] if not "@" in spaced[0] else spaced[0][1:].split("!")[0], system=system_), typ="notice", mention=not system_))
|
||||
elif spaced[1] == "001":
|
||||
cache.append(ParserMessage(content="Server reports name \"" + spaced[6], name="Connection"))
|
||||
cache.append(ParserMessage(content="Server reports name \"" + spaced[6] + "\"", name="Connection"))
|
||||
elif spaced[1] == "003":
|
||||
cache.append(ParserMessage(content="Server reports creation time " + " ".join(spaced[7:]), name="ScParse"))
|
||||
elif spaced[1] == "433":
|
||||
|
|
Loading…
Add table
Reference in a new issue