summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/main.lua
diff options
context:
space:
mode:
authornielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-28 12:18:55 +0200
committernielsbreu@gmail.com <nielsbreu@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-28 12:18:55 +0200
commitbeb36ee1496fa54ae9a0abcef4251d71512d48c5 (patch)
treec8b47085477b48bb3c6f6a490d05f884243d6c11 /MCServer/Plugins/Core/main.lua
parentAdded a basic RCON protocol (diff)
downloadcuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar.gz
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar.bz2
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar.lz
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar.xz
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.tar.zst
cuberite-beb36ee1496fa54ae9a0abcef4251d71512d48c5.zip
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Core/main.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/main.lua b/MCServer/Plugins/Core/main.lua
index 8f83a2989..1f24e0715 100644
--- a/MCServer/Plugins/Core/main.lua
+++ b/MCServer/Plugins/Core/main.lua
@@ -32,6 +32,7 @@ function Initialize(Plugin)
PluginManager:AddHook(Plugin, cPluginManager.HOOK_CHUNK_GENERATING)
PluginManager:AddHook(Plugin, cPluginManager.HOOK_PLAYER_MOVING)
+ PluginManager:BindCommand("/listworlds", "core.listworlds", HandleListWorldsCommand, " - Shows a list of all the worlds");
PluginManager:BindCommand("/listgroups", "core.listgroups", HandleListGroupsCommand, " - Shows a list of all the groups");
PluginManager:BindCommand("/toggledownfall", "core.toggledownfall", HandleToggleDownfallCommand, " - Toggles the weather");
PluginManager:BindCommand("/back", "core.back", HandleBackCommand, " - Return to your last position");