1
0
mirror of https://github.com/sys-fs/seddy synced 2024-11-22 03:44:17 -05:00

Fix PING response

This commit is contained in:
Thomas Mannay 2016-11-05 20:27:12 +00:00 committed by GitHub
parent 51b66366ee
commit 65417b187a

View File

@ -92,6 +92,9 @@ if __name__ == "__main__":
for line in receive:
msg = parse_msg.search(line)
if msg is None:
if 'PING' in line:
send.write('PONG\r\n')
send.flush()
continue
else:
msg = msg.group(1)
@ -101,9 +104,6 @@ if __name__ == "__main__":
if 'PRIVMSG' in line and not is_sed.match(msg):
history.enqueue(msg)
if 'PING' in line:
send.write('PONG\r\n')
send.flush()
if '.bots' in msg[:5] or '.bot ' + nick in msg[:5 + len(nick)]:
notice("I was written to correct your mistakes.")
if '.source ' + nick in msg[:8 + len(nick)]: