Update server.py

This commit is contained in:
Nova Cat 2025-02-15 00:00:42 -08:00
parent 388a0bab21
commit 72aed2e7fc

View file

@ -523,7 +523,9 @@ def session(connection, client, ip, isssl=False):
dosend(bytes(f"{tags()}:{server} NOTICE * :*** Could not join {channel}\r\n","UTF-8"))
print(channels_list)
print(channel_modestore_identify[channel])
if property_list[pending]["identified"] and property_list[pending]["identusername"] in channel_modestore_identify[channel]:
print(property_list[pending]["identusername"])
if property_list[pending]["identified"]:
if property_list[pending]["identusername"] in channel_modestore_identify[channel]:
print(f"{pending} has an identify mode, setting mode " + channel_modestore_identify[channel][property_list[pending]["identusername"]])
channel_modestore[channel][pending] = channel_modestore_identify[channel][property_list[pending]["identusername"]]
for i in channels_list[channel]: