summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/pluginlist.lua
blob: 5f01c0339ec4f7d9fc3f7bdd938af8100e43da22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function HandlePluginListCommand( Split, Player )
	local PluginManager = cRoot:Get():GetPluginManager()
	local PluginList = PluginManager:GetAllPlugins()

	local PluginTable = {}
	for k, Plugin in pairs( PluginList ) do
		if ( Plugin ) then
			table.insert(PluginTable, Plugin:GetName() )
		end
	end

	Player:SendMessage( cChatColor.Green .. "Loaded plugins: (" .. #PluginTable .. ")" )
	Player:SendMessage( cChatColor.Gold .. table.concat(PluginTable, cChatColor.Gold.." ") )
	return true
end