From b115f5054250031802ccce421f415a4ae4243a46 Mon Sep 17 00:00:00 2001 From: swee Date: Fri, 27 Dec 2024 20:16:23 -0800 Subject: [PATCH] Update server.py --- server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/server.py b/server.py index 74d7b53..b0e4ac2 100644 --- a/server.py +++ b/server.py @@ -78,6 +78,7 @@ reserved = ["nickserv", "chanserv", "gitserv"] # Reserved nicknames nickname_list = {} # Stores nicknames and the respective sockets lower_nicks = {"gitserv": "GitServ", "nickserv": "NickServ"} # Nicknames in lowercase channels_list = {} # Store channels and their user lists +lower_chans = {} # Channel names in lowercase property_list = {"GitServ": {"host": "IRCatCore", "username": "IRCat", "realname": "Codename IRCat Integrated services - Updates bot"},"NickServ": {"host": "IRCatCore", "username": "IRCat", "realname": "Codename IRCat Integrated services - Login bot", "away": False}} # Stores properties for active users and channels print("Now listening on port 6667") def pinger(nick, connection):