Update server.py
This commit is contained in:
parent
776e5e4355
commit
14120d3957
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ def session(connection, client):
|
||||||
username = text.split(" ")[1]
|
username = text.split(" ")[1]
|
||||||
ready = True
|
ready = True
|
||||||
elif command == "CAP":
|
elif command == "CAP":
|
||||||
if args[0] == "LS"
|
if args[0] == "LS":
|
||||||
connection.sendall(bytes(f":{server} CAP * LS :away-notify", "UTF-8"))
|
connection.sendall(bytes(f":{server} CAP * LS :away-notify", "UTF-8"))
|
||||||
elif (ready and already_set) and not finished:
|
elif (ready and already_set) and not finished:
|
||||||
connection.sendall(bytes(f":{server} 001 {pending} :Welcome to the {displayname} Internet Relay Chat Network {pending}\r\n", "UTF-8"))
|
connection.sendall(bytes(f":{server} 001 {pending} :Welcome to the {displayname} Internet Relay Chat Network {pending}\r\n", "UTF-8"))
|
||||||
|
|
Loading…
Reference in a new issue