Update server.py
All checks were successful
Check syntax / check (push) Successful in 5s

This commit is contained in:
Nova Cat 2024-12-26 16:53:30 -08:00
parent 6d8486639b
commit e40a59cc56

View file

@ -381,8 +381,8 @@ def session(connection, client):
msg = "Client Quit"
else:
msg = text.split(" ")[1:]
if msg[0] == ":":
msg=msg[1:]
if msg[0][0] == ":":
msg[0]=msg[0][1:]
if len(msg) > 0:
mse = " ".join(msg)
msg = f"Quit: {mse}"