From a2b4a17456d3e676f92bd5940aecd7e6ce21e163 Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 11 Jan 2025 00:57:49 -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 da2c862..af397a4 100644 --- a/modules/botnet_protect.py +++ b/modules/botnet_protect.py @@ -31,7 +31,7 @@ class IRCatModule: elif "PRIVMSG" in value: target = value.split(" ")[1] content = " ".join(value.split(" ")[2:])[1:] - if content in self.sus_strings and ( and ): + if content in self.sus_strings: if ip in self.memory: if self.memory[ip] == 1: self.ban(ip)