Skip to content
Snippets Groups Projects
Commit 84f50daa authored by Svetlana Tkachenko's avatar Svetlana Tkachenko
Browse files

added ctcp clientinfo (fixes issue #11 (thanks msemper))

parent b72a1e19
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,8 @@ class ctcp(object):
self.prnt("CTCP args: " + ctcp_args + " came in")
if ctcp_type == "version":
self.server.doNotice(nick, "\001VERSION guppy " + self.server.config["version"] + "\001")
elif ctcp_type == "clientinfo":
self.server.doNotice(nick, "\001VERSION guppy " + self.server.config["version"] + "\001")
elif ctcp_type == "source":
self.server.doNotice(nick, "\001VERSION http://repo.or.cz/w/guppy.git\001")
elif ctcp_type == "ping":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment