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