diff options
author | Simon Hafner <hafnersimon@gmail.com> | 2009-01-21 16:49:31 +0100 |
---|---|---|
committer | dmitry kim <jason@nichego.net> | 2009-01-22 02:48:19 +0300 |
commit | 750f579b6ad2683abd50b51392e29dd1291d4d7e (patch) | |
tree | 0c88d517032dcbe495edff92a23ac245b1ef468e /data/rbot/plugins/markov.rb | |
parent | ec5745fa7abd47b8ca12bd783b0759079dff9917 (diff) |
+ (reply) config option to force reply to query
+ (reply) symbol to bypass the config option
* (plugins) fixed url according to the patch
The symbols are:
:to => :public force the message to be replied in channel (if any)
:to => :private force the message to be replied in private
:to => :auto takes core.private_replies (default)
Diffstat (limited to 'data/rbot/plugins/markov.rb')
-rw-r--r-- | data/rbot/plugins/markov.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/markov.rb b/data/rbot/plugins/markov.rb index 3a1fea59..64e87556 100644 --- a/data/rbot/plugins/markov.rb +++ b/data/rbot/plugins/markov.rb @@ -187,7 +187,7 @@ class MarkovPlugin < Plugin # of the line we received return if message.index(line) == 0 @bot.timer.add_once(delay) { - m.reply line, :nick => false + m.reply line, :nick => false, :to => :public } end |