diff options
Diffstat (limited to 'data')
-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 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 |