summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/plugins.lua
blob: 6d74cf29ef452ac9b5b504d55c97654d606f9b14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function HandlePluginsCommand( 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