summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-11-26 16:47:15 +0100
committerMattes D <github@xoft.cz>2016-11-26 16:47:15 +0100
commit3c8affeee8f77c455bb8e52730cdf70de8a24460 (patch)
treef71e2f65008c6b1487f0a99539b24af03b567a3c
parentMerge pull request #3459 from cuberite/ExpandFloorStrategy (diff)
downloadcuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar.gz
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar.bz2
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar.lz
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar.xz
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.tar.zst
cuberite-3c8affeee8f77c455bb8e52730cdf70de8a24460.zip
-rw-r--r--Server/Plugins/Debuggers/Info.lua50
1 files changed, 25 insertions, 25 deletions
diff --git a/Server/Plugins/Debuggers/Info.lua b/Server/Plugins/Debuggers/Info.lua
index 6c7eabbf2..6964a9036 100644
--- a/Server/Plugins/Debuggers/Info.lua
+++ b/Server/Plugins/Debuggers/Info.lua
@@ -13,7 +13,7 @@ g_PluginInfo =
Version = "14",
Date = "2014-12-11",
Description = [[Contains code for testing and debugging the server. Should not be enabled on a production server!]],
-
+
Commands =
{
["/arr"] =
@@ -22,6 +22,12 @@ g_PluginInfo =
Handler = HandleArrowCmd,
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"] =
{
Permission = "debuggers",
@@ -172,6 +178,12 @@ g_PluginInfo =
Handler = HandleStarveCmd,
HelpString = "Sets the food level to zero"
},
+ ["/teams"] =
+ {
+ Permission = "debuggers",
+ Handler = HandleTeamsCmd,
+ HelpString = "List the teams"
+ },
["/testwnd"] =
{
Permission = "debuggers",
@@ -202,20 +214,8 @@ g_PluginInfo =
Handler = HandleRemoveXp,
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
-
+
ConsoleCommands =
{
["bbox"] =
@@ -223,43 +223,43 @@ g_PluginInfo =
Handler = HandleConsoleBBox,
HelpString = "Performs cBoundingBox API tests",
},
-
+
["download"] =
{
Handler = HandleConsoleDownload,
HelpString = "Downloads a file from a specified URL",
},
-
+
["hash"] =
{
Handler = HandleConsoleHash,
HelpString = "Tests the crypto hashing functions",
},
-
+
["inh"] =
{
Handler = HandleConsoleInh,
HelpString = "Tests the bindings of the cEntity inheritance",
},
-
+
["loadchunk"] =
{
Handler = HandleConsoleLoadChunk,
HelpString = "Loads the specified chunk into memory",
},
-
+
["preparechunk"] =
{
Handler = HandleConsolePrepareChunk,
HelpString = "Prepares the specified chunk completely (load / gen / light)",
},
-
+
["sched"] =
{
Handler = HandleConsoleSchedule,
HelpString = "Tests the world scheduling",
},
-
+
["testbbox"] =
{
Handler = HandleConsoleTestBbox,
@@ -271,7 +271,7 @@ g_PluginInfo =
Handler = HandleConsoleTestCall,
HelpString = "Tests inter-plugin calls with various values"
},
-
+
["testjson"] =
{
Handler = HandleConsoleTestJson,
@@ -283,19 +283,19 @@ g_PluginInfo =
Handler = HandleConsoleTestTracer,
HelpString = "Tests the cLineBlockTracer",
},
-
+
["testurlclient"] =
{
Handler = HandleConsoleTestUrlClient,
HelpString = "Tests the cUrlClient",
},
-
+
["testurlparser"] =
{
Handler = HandleConsoleTestUrlParser,
HelpString = "Tests the cUrlParser",
},
-
+
["uuid"] =
{
Handler = HandleConsoleUuid,