summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-10-23 21:16:26 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2006-10-23 21:16:26 +0000
commitd91186b48d1a3fd00c06782f89b76f95eeea9896 (patch)
tree8772db57825e66b6252b632decdb230b3cd7fe77 /data
parentc33a37ef3b209849b52e3a2d930d6ac4ac24b80f (diff)
stupid typo in keywords forget
Diffstat (limited to 'data')
-rw-r--r--data/rbot/plugins/keywords.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/keywords.rb b/data/rbot/plugins/keywords.rb
index a5b773a1..dc7171ed 100644
--- a/data/rbot/plugins/keywords.rb
+++ b/data/rbot/plugins/keywords.rb
@@ -446,7 +446,7 @@ class Keywords < Plugin
keyword_lookup(m, m.params) if @bot.auth.allow?('keyword', m.source, m.replyto)
end
when "forget"
- keyword_forget(m, params) if @bot.auth.allow?('keycmd', m.source, m.replyto)
+ keyword_forget(m, m.params) if @bot.auth.allow?('keycmd', m.source, m.replyto)
when "tell"
if m.params =~ /(\S+)\s+about\s+(.+)$/
keyword_tell(m, $1, $2) if @bot.auth.allow?('keyword', m.source, m.replyto)