From 608b8e3cad216d1e36ee4800aa5aefb803a271c4 Mon Sep 17 00:00:00 2001 From: Jordyn Date: Sat, 14 Mar 2026 18:19:17 -0500 Subject: [PATCH] Fix INVITE code again This adds it to the channel list so it gets PART'ed correctly --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index c74100d..5f3f60b 100755 --- a/main.py +++ b/main.py @@ -297,7 +297,8 @@ class Server(): if msg["message_source"] in self.opper_nicknames: print(f"[RECVTHREAD] Joining channel by opper command from {msg['message_source']}!") self._send_q.put(f"JOIN {msg['params'][-1]}\r\n".encode()) - + self.channels.append(msg["params"][-1]) + # This is where we actually run the RCE commands and pipe the output # back to IRC. #