summaryrefslogtreecommitdiff
path: root/data/rbot/plugins
diff options
context:
space:
mode:
authorMarshall Roch <marshall@mroch.com>2015-08-09 12:59:29 -0700
committerMarshall Roch <marshall@mroch.com>2015-08-09 12:59:29 -0700
commit88e6fe9f165706e90f3c987ae2faeed8d377f1d4 (patch)
treef4915770d07a4015db3ce29b7fa91739753af201 /data/rbot/plugins
parent43ebe3abdcb86e0edebb2d581e07064df7fdf467 (diff)
Update markov.rb
This gets `markov probability` and `markov status` running again. I think there were some backwards-incompatible changes to MessageMapper that make the defaults required even with `[]`'s or something?
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r--data/rbot/plugins/markov.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/data/rbot/plugins/markov.rb b/data/rbot/plugins/markov.rb
index eb9294e2..abb10172 100644
--- a/data/rbot/plugins/markov.rb
+++ b/data/rbot/plugins/markov.rb
@@ -391,7 +391,7 @@ class MarkovPlugin < Plugin
def status(m,params)
if @bot.config['markov.enabled']
- reply = _("markov is currently enabled, %{p}% chance of chipping in") % { :p => probability? }
+ reply = _("markov is currently enabled, %{p}%% chance of chipping in") % { :p => probability? }
l = @learning_queue.length
reply << (_(", %{l} messages in queue") % {:l => l}) if l > 0
l = @upgrade_queue.length
@@ -494,7 +494,7 @@ class MarkovPlugin < Plugin
@bot.config['markov.probability'] = params[:probability].to_i
m.okay
else
- m.reply _("markov has a %{prob}% chance of chipping in") % { :prob => probability? }
+ m.reply _("markov has a %{prob}%% chance of chipping in") % { :prob => probability? }
end
end
@@ -749,9 +749,10 @@ plugin.map 'markov enable', :action => "enable"
plugin.map 'markov disable', :action => "disable"
plugin.map 'markov status', :action => "status"
plugin.map 'markov stats', :action => "stats"
-plugin.map 'chat about :seed1 [:seed2]', :action => "chat"
+plugin.map 'chat about :seed1 [:seed2]', :action => "chat", :defaults => {:seed2 => nil}
plugin.map 'chat', :action => "rand_chat"
plugin.map 'markov probability [:probability]', :action => "probability",
+ :defaults => {:probability => nil},
:requirements => {:probability => /^\d+%?$/}
plugin.map 'markov learn from :file [:testing [:lines lines]] [using pattern *pattern]', :action => "learn_from", :thread => true,
:requirements => {