This commit is contained in:
8dx 2013-07-16 19:05:29 -05:00
parent 2cb7f7f46b
commit 9c1c73c2d4
2 changed files with 0 additions and 19 deletions

Binary file not shown.

@ -1,19 +0,0 @@
require 'cinch'
require_relative '../classes/Util.rb'
class PlugList
include Cinch::Plugin
@@commandName = "plugs"
set :prefix, /^:/
match /plugs/
def execute(m)
ibot = Util::Bot.instance
str = ""
ibot.bot.plugins.each do |plug|
str += " #{plug.class.name}"
end
m.reply str
end
end