diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2012-09-14 08:42:10 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2012-09-14 08:42:10 +0200 |
commit | 135370baac12057242320636a3e7758c3a683f13 (patch) | |
tree | 017e147de4d203e1ecf412d26ad37b8cb54d463d | |
parent | 5595e355d736256d3dfe923aa12e56d6b3d9622e (diff) |
search: thread the new engines too
-rw-r--r-- | data/rbot/plugins/search.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/search.rb b/data/rbot/plugins/search.rb index ca4a90e8..1102d5e5 100644 --- a/data/rbot/plugins/search.rb +++ b/data/rbot/plugins/search.rb @@ -479,7 +479,7 @@ end plugin = SearchPlugin.new -plugin.map "ddg *words", :action => 'duckduckgo' +plugin.map "ddg *words", :action => 'duckduckgo', :threaded => true plugin.map "search *words", :action => 'google', :threaded => true plugin.map "google *words", :action => 'google', :threaded => true plugin.map "lucky *words", :action => 'lucky', :threaded => true @@ -487,7 +487,7 @@ plugin.map "gcount *words", :action => 'gcount', :threaded => true plugin.map "gcalc *words", :action => 'gcalc', :threaded => true plugin.map "gdef *words", :action => 'gdef', :threaded => true plugin.map "gtime *words", :action => 'gtime', :threaded => true -plugin.map "wa *words", :action => 'wolfram' +plugin.map "wa *words", :action => 'wolfram', :threaded => true plugin.map "wp :lang *words", :action => 'wikipedia', :requirements => { :lang => /^\w\w\w?$/ }, :threaded => true plugin.map "wp *words", :action => 'wikipedia', :threaded => true plugin.map "unpedia *words", :action => 'unpedia', :threaded => true |