1
0

Debuggers: Sorted the Info.lua commands.

This commit is contained in:
Mattes D 2016-11-26 16:47:15 +01:00
parent 4e9da46a85
commit 3c8affeee8

View File

@ -22,6 +22,12 @@ g_PluginInfo =
Handler = HandleArrowCmd, Handler = HandleArrowCmd,
HelpString = "Creates an arrow going away from the player" HelpString = "Creates an arrow going away from the player"
}, },
["/blk"] =
{
Permission = "debuggers",
Handler = HandleBlkCmd,
HelpString = "Gets info about the block you are looking at"
},
["/compo"] = ["/compo"] =
{ {
Permission = "debuggers", Permission = "debuggers",
@ -172,6 +178,12 @@ g_PluginInfo =
Handler = HandleStarveCmd, Handler = HandleStarveCmd,
HelpString = "Sets the food level to zero" HelpString = "Sets the food level to zero"
}, },
["/teams"] =
{
Permission = "debuggers",
Handler = HandleTeamsCmd,
HelpString = "List the teams"
},
["/testwnd"] = ["/testwnd"] =
{ {
Permission = "debuggers", Permission = "debuggers",
@ -202,18 +214,6 @@ g_PluginInfo =
Handler = HandleRemoveXp, Handler = HandleRemoveXp,
HelpString = "Remove all xp" HelpString = "Remove all xp"
}, },
["/blk"] =
{
Permission = "debuggers",
Handler = HandleBlkCmd,
HelpString = "Gets info about the block you are looking at"
},
["/teams"] =
{
Permission = "debuggers",
Handler = HandleTeamsCmd,
HelpString = "List the teams"
},
}, -- Commands }, -- Commands
ConsoleCommands = ConsoleCommands =