diff options
author | Mattes D <github@xoft.cz> | 2014-12-11 21:21:41 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-11 21:21:58 +0100 |
commit | 1142879cc8e6c585e6722d720ca0b58f619a5961 (patch) | |
tree | a3750ac0d6dd373a82871652255b8dc2c8cdb8d8 /MCServer/Plugins/Debuggers/Info.lua | |
parent | Debuggers: Changed to use Info.lua file. (diff) | |
download | cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar.gz cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar.bz2 cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar.lz cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar.xz cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.tar.zst cuberite-1142879cc8e6c585e6722d720ca0b58f619a5961.zip |
Diffstat (limited to 'MCServer/Plugins/Debuggers/Info.lua')
-rw-r--r-- | MCServer/Plugins/Debuggers/Info.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MCServer/Plugins/Debuggers/Info.lua b/MCServer/Plugins/Debuggers/Info.lua index 6e2591ffa..b96ef3de5 100644 --- a/MCServer/Plugins/Debuggers/Info.lua +++ b/MCServer/Plugins/Debuggers/Info.lua @@ -205,6 +205,16 @@ g_PluginInfo = Handler = HandleConsoleSchedule, HelpString = "Tests the world scheduling", }, + ["loadchunk"] = + { + Handler = HandleConsoleLoadChunk, + HelpString = "Loads the specified chunk into memory", + }, + ["preparechunk"] = + { + Handler = HandleConsolePrepareChunk, + HelpString = "Prepares the specified chunk completely (load / gen / light)", + } }, -- ConsoleCommands } -- g_PluginInfo |