From 5f8f6512fe6d9259ac9d051054eccde2d7bf5922 Mon Sep 17 00:00:00 2001 From: swee Date: Sun, 26 Jan 2025 20:32:22 -0800 Subject: [PATCH] Update modules/botnet_protect.py --- modules/botnet_protect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/botnet_protect.py b/modules/botnet_protect.py index 548ff5f..4f1cc22 100644 --- a/modules/botnet_protect.py +++ b/modules/botnet_protect.py @@ -33,7 +33,7 @@ class IRCatModule: self.memory[ip] = 1 # 1: Just joined the channel, continue observing. if target.lower() == "#ircatsucks": self.ban(ip) # Ruh roh - elif "PRIVMSG" in value + elif "PRIVMSG" in value: if not (ip in self.memory and self.memory[ip] == 0): # Continue observing target = value.split(" ")[1] content = " ".join(value.split(" ")[2:])[1:]