diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-11 22:54:22 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-11 22:54:22 +0100 |
commit | c67eb4071b38377ef32a7b6cc07cd6111f754870 (patch) | |
tree | f34d8d94fd9e47114cd57a80d59b9c671ce62cb9 /data/rbot | |
parent | 120ab566aa0394e3386af89c1ed4776c13433ef8 (diff) |
dict plugin: thread retrievals
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/dict.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rbot/plugins/dict.rb b/data/rbot/plugins/dict.rb index db779889..6edff065 100644 --- a/data/rbot/plugins/dict.rb +++ b/data/rbot/plugins/dict.rb @@ -168,7 +168,7 @@ class DictPlugin < Plugin end plugin = DictPlugin.new -plugin.map 'demauro :word', :action => 'demauro' -plugin.map 'oxford *word', :action => 'oxford' -plugin.map 'chambers *word', :action => 'chambers' +plugin.map 'demauro :word', :action => 'demauro', :thread => true +plugin.map 'oxford *word', :action => 'oxford', :thread => true +plugin.map 'chambers *word', :action => 'chambers', :thread => true |