From 3a8550d3e646b1edefdf039b9aea2d4c4d3c3efc Mon Sep 17 00:00:00 2001 From: Spencer Rinehart Date: Thu, 12 Feb 2009 15:14:44 -0500 Subject: markov plugin: add the size of the learning queue to the status message. --- data/rbot/plugins/markov.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data') diff --git a/data/rbot/plugins/markov.rb b/data/rbot/plugins/markov.rb index abbcb332..6e692def 100644 --- a/data/rbot/plugins/markov.rb +++ b/data/rbot/plugins/markov.rb @@ -99,7 +99,7 @@ class MarkovPlugin < Plugin def status(m,params) if @bot.config['markov.enabled'] - m.reply "markov is currently enabled, #{probability?}% chance of chipping in" + m.reply "markov is currently enabled, #{probability?}% chance of chipping in, #{@learning_queue.length} messages in queue" else m.reply "markov is currently disabled" end -- cgit v1.2.3