summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-15 13:58:15 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-15 13:58:15 +0000
commitda4d97f0652bddcee269b6d99863f21a1021056c (patch)
treee490c7c46824a28f2852e3a9a726be77ff2a6564 /lib
parent451bc325030d8149c9354fdd468d71d5d3875d41 (diff)
New unreplied() method for plugins that want to handle PRIVMSGs unreplied by any other plugin. Use it in the keywords plugin
Diffstat (limited to 'lib')
-rw-r--r--lib/rbot/ircbot.rb3
-rw-r--r--lib/rbot/plugins.rb5
2 files changed, 7 insertions, 1 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb
index ed435fb4..0ef6b1de 100644
--- a/lib/rbot/ircbot.rb
+++ b/lib/rbot/ircbot.rb
@@ -498,6 +498,9 @@ class IrcBot
unless ignored
@plugins.delegate "listen", m
@plugins.privmsg(m) if m.address?
+ if not m.replied
+ @plugins.delegate "unreplied", m
+ end
end
}
@client[:notice] = proc { |data|
diff --git a/lib/rbot/plugins.rb b/lib/rbot/plugins.rb
index 564495e0..e101e627 100644
--- a/lib/rbot/plugins.rb
+++ b/lib/rbot/plugins.rb
@@ -61,11 +61,14 @@ module Plugins
etc.
privmsg(PrivMessage)::
- called for a PRIVMSG if the first word matches one
+ Called for a PRIVMSG if the first word matches one
the plugin register()d for. Use m.plugin to get
that word and m.params for the rest of the message,
if applicable.
+ unreplied(PrivMessage)::
+ Called for a PRIVMSG which has not been replied to.
+
kick(KickMessage)::
Called when a user (or the bot) is kicked from a
channel the bot is in.