diff --git a/modules/botnet_protect.py b/modules/botnet_protect.py index 67527ec..77b521a 100644 --- a/modules/botnet_protect.py +++ b/modules/botnet_protect.py @@ -25,7 +25,7 @@ class IRCatModule: if "JOIN" in value: target = value.split(" ")[1] self.memory[cachedNick + "|" + ip][target] = 1 # 1: Just joined the channel, continue observing. - if target = "#IRCATSUCKS": + if target == "#IRCATSUCKS": self.ban(ip) elif "PRIVMSG" in value: target = value.split(" ")[1]