summaryrefslogtreecommitdiffstats
path: root/Core/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Core/plugins.lua')
-rw-r--r--Core/plugins.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/Core/plugins.lua b/Core/plugins.lua
deleted file mode 100644
index 6d74cf29e..000000000
--- a/Core/plugins.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-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 \ No newline at end of file