summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Core/plugins.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/MCServer/Plugins/Core/plugins.lua b/MCServer/Plugins/Core/plugins.lua
deleted file mode 100644
index 352c80bb3..000000000
--- a/MCServer/Plugins/Core/plugins.lua
+++ /dev/null
@@ -1,17 +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
-
- SendMessage( Player, "There are " .. #PluginTable .. " loaded plugins" )
- SendMessage( Player, table.concat( PluginTable , " " ) )
- return true
-
-end