fixed a few issues

This commit is contained in:
Dionysus 2020-11-25 22:01:10 -05:00
parent c6b7ab5bb6
commit 825b549153
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
3 changed files with 7 additions and 8 deletions

View File

@ -4,13 +4,13 @@
class connection: class connection:
server = 'irc.supernets.org' server = 'irc.supernets.org'
port = 6667 port = 6697
proxy = None proxy = None
ipv6 = False ipv6 = False
ssl = False ssl = True
ssl_verify = False ssl_verify = False
vhost = None vhost = None
channel = '#500' channel = '#dev'
key = None key = None
class cert: class cert:
@ -19,12 +19,12 @@ class cert:
password = None password = None
class ident: class ident:
nickname = 'WORMSEC' nickname = 'DevBot'
username = 'wormsec' username = 'devbot'
realname = '48 0 US 3.7.2.1' realname = 'acid.vegas/skeleton'
class login: class login:
network = 'ELSILRACLIHP' network = None
nickserv = None nickserv = None
operator = None operator = None

View File

@ -261,7 +261,6 @@ class Events:
elif args[1] == constants.JOIN and len(args) == 3: elif args[1] == constants.JOIN and len(args) == 3:
nick = args[0].split('!')[0][1:] nick = args[0].split('!')[0][1:]
chan = args[2][1:] chan = args[2][1:]
Commands.raw('WHOIS SNIFF')
Events.join_channel(nick, chan) Events.join_channel(nick, chan)
elif args[1] == constants.KICK and len(args) >= 4: elif args[1] == constants.KICK and len(args) >= 4:
nick = args[0].split('!')[0][1:] nick = args[0].split('!')[0][1:]

Binary file not shown.