archive

- Random tools & helpful resources for IRC
git clone git://git.acid.vegas/archive.git
Log | Files | Refs | Archive

commit b77c5aed879a42acf09f7dab9467269ad65e90c1
parent ba9f5107cee444c6eacc8e909c0dfcee6d7b1ad8
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sat, 22 Jul 2023 23:52:39 -0400

Removed oper check lines dont need oper

Diffstat:
Mbots/tailbot.py | 2--

1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/bots/tailbot.py b/bots/tailbot.py
@@ -118,8 +118,6 @@ class Bot():
 						await self.raw(f'MODE {identity.nickname} +{connection.modes}')
 					if identity.nickserv:
 						await self.sendmsg('NickServ', f'IDENTIFY {identity.nickname} {identity.nickserv}')
-					if identity.operator:
-						await self.raw('OPER hates {identity.operator}')
 					await self.raw(f'JOIN {connection.channel} {connection.key}') if connection.key else await self.raw('JOIN ' + connection.channel)
 					self.loops['tail'] = asyncio.create_task(self.loop_tail())
 				elif args[1] == '433':