summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/markov.rb
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-08-08 09:36:21 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-08-08 09:36:21 +0200
commitc710eee9589a2ca2ab9c307b29efb5cfd0ee175a (patch)
tree5d733ea5d364ad279ebfef3599ed7d156f4b0d1b /data/rbot/plugins/markov.rb
parent47bcf91419e614b34ed04e05c8d28663c6c5202c (diff)
markov plugin: always plain replies when chipping in
Diffstat (limited to 'data/rbot/plugins/markov.rb')
-rw-r--r--data/rbot/plugins/markov.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/markov.rb b/data/rbot/plugins/markov.rb
index 9b83e53a..48be7067 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
+ m.plainreply line
}
end