diff options
author | Mattes D <github@xoft.cz> | 2016-11-26 17:52:33 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-11-26 17:52:33 +0100 |
commit | 3872e813f32398d55d8a038b450fc2faba3b46b6 (patch) | |
tree | 1256310e254895440ae6bd028f912e914036536a /Server/Plugins/Debuggers/Info.lua | |
parent | Debuggers: Sorted the Info.lua commands. (diff) | |
download | cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar.gz cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar.bz2 cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar.lz cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar.xz cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.tar.zst cuberite-3872e813f32398d55d8a038b450fc2faba3b46b6.zip |
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/Debuggers/Info.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Server/Plugins/Debuggers/Info.lua b/Server/Plugins/Debuggers/Info.lua index 6964a9036..06fabad14 100644 --- a/Server/Plugins/Debuggers/Info.lua +++ b/Server/Plugins/Debuggers/Info.lua @@ -100,6 +100,12 @@ g_PluginInfo = Handler = HandleGCCmd, HelpString = "Activates the Lua garbage collector" }, + ["/getlore"] = + { + Permission = "debuggers", + Handler = HandleGetLoreCmd, + HelpString = "Displays the Lore of currently held item", + }, ["/hunger"] = { Permission = "debuggers", @@ -166,6 +172,12 @@ g_PluginInfo = Handler = HandleSched, HelpString = "Schedules a simple countdown using cWorld:ScheduleTask()" }, + ["/setlore"] = + { + Permission = "debuggers", + Handler = HandleSetLoreCmd, + HelpString = "Sets the lore for the item currently in hand", + }, ["/spidey"] = { Permission = "debuggers", |