diff options
Diffstat (limited to 'lib/rbot/plugins.rb')
-rw-r--r-- | lib/rbot/plugins.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/plugins.rb b/lib/rbot/plugins.rb index 7e98b1b3..ec99fe30 100644 --- a/lib/rbot/plugins.rb +++ b/lib/rbot/plugins.rb @@ -176,7 +176,7 @@ module Plugins # return an identifier for this plugin, defaults to a list of the message # prefixes handled (used for error messages etc) def name - self.class.to_s.downcase.sub(/^#<module:.*?>::/,"").sub(/(plugin)?$/,"") + self.class.to_s.downcase.sub(/^#<module:.*?>::/,"").sub(/(plugin|module)?$/,"") end # just calls name |