summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Debuggers/Info.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-02-21 09:41:14 +0100
committerMattes D <github@xoft.cz>2015-02-21 09:41:14 +0100
commitb9e4fe0a3b2a6a4d688d1a0807f15944361fb585 (patch)
treed275514c962f4e852cfd6dede9e4cde349f6dbc7 /MCServer/Plugins/Debuggers/Info.lua
parentFixed monster spawn randomness. (diff)
downloadcuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar.gz
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar.bz2
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar.lz
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar.xz
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.tar.zst
cuberite-b9e4fe0a3b2a6a4d688d1a0807f15944361fb585.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