diff options
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/keywords.rb | 2 |
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) |