summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/rbot/plugins/keywords.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rbot/plugins/keywords.rb b/data/rbot/plugins/keywords.rb
index 514f615a..b20c824e 100644
--- a/data/rbot/plugins/keywords.rb
+++ b/data/rbot/plugins/keywords.rb
@@ -71,14 +71,14 @@ class Keyword
end
end
-# keyword plugin class.
+# keywords class.
#
# Handles all that stuff like "bot: foo is bar", "bot: foo?"
#
# Fallback after core and auth have had a look at a message and refused to
# handle it, checks for a keyword command or lookup, otherwise the message
# is delegated to plugins
-class KeywordPlugin < Plugin
+class Keywords < Plugin
BotConfig.register BotConfigBooleanValue.new('keyword.listen',
:default => false,
:desc => "Should the bot listen to all chat and attempt to automatically detect keywords? (e.g. by spotting someone say 'foo is bar')")
@@ -449,5 +449,5 @@ class KeywordPlugin < Plugin
end
end
-plugin = KeywordPlugin.new
+plugin = Keywords.new
plugin.register 'keyword'