|
|
@@ -116,12 +116,22 @@ class PyRot(irc.bot.SingleServerIRCBot):
|
|
|
log.info(event)
|
|
|
|
|
|
|
|
|
- def on_userhost(self, connection, event):
|
|
|
- print(event)
|
|
|
-
|
|
|
def on_whoreply(self, connection, event):
|
|
|
events.on_whoreply.process_event(self, connection, event)
|
|
|
|
|
|
+ def on_userhost(self, connection, event):
|
|
|
+ log.info(event)
|
|
|
+
|
|
|
+
|
|
|
+ def on_yourhost(self, connection, event):
|
|
|
+ log.info(event)
|
|
|
+
|
|
|
+ def on_yourebannedcreep(self, connection, event):
|
|
|
+ log.warning(event)
|
|
|
+
|
|
|
+ def on_youwillbebanned(selfself, connection, event):
|
|
|
+ log.warning(event)
|
|
|
+
|
|
|
|
|
|
# DCC stuff from originalexample file.
|
|
|
def on_dccmsg(self, c, e):
|