summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Debuggers/Info.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-02-21 12:19:07 +0100
committerMattes D <github@xoft.cz>2015-02-21 12:19:07 +0100
commit006b1afa9e08799ffcfc8a6285b036f711a419ea (patch)
tree405124838229912c86175d8776ff877549f1b04d /MCServer/Plugins/Debuggers/Info.lua
parentMerge pull request #1755 from mc-server/NetworkUDP (diff)
parentAdded cCryptoHash namespace to Lua API. (diff)
downloadcuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar.gz
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar.bz2
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar.lz
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar.xz
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.tar.zst
cuberite-006b1afa9e08799ffcfc8a6285b036f711a419ea.zip
Diffstat (limited to 'MCServer/Plugins/Debuggers/Info.lua')
-rw-r--r--MCServer/Plugins/Debuggers/Info.lua16
1 files changed, 12 insertions, 4 deletions
diff --git a/MCServer/Plugins/Debuggers/Info.lua b/MCServer/Plugins/Debuggers/Info.lua
index b96ef3de5..63a4b9177 100644
--- a/MCServer/Plugins/Debuggers/Info.lua
+++ b/MCServer/Plugins/Debuggers/Info.lua
@@ -200,21 +200,29 @@ g_PluginInfo =
ConsoleCommands =
{
- ["sched"] =
+ ["hash"] =
{
- Handler = HandleConsoleSchedule,
- HelpString = "Tests the world scheduling",
+ Handler = HandleConsoleHash,
+ HelpString = "Tests the crypto hashing functions",
},
+
["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",
+ },
}, -- ConsoleCommands
} -- g_PluginInfo