summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/Debuggers/Info.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Server/Plugins/Debuggers/Info.lua')
-rw-r--r--Server/Plugins/Debuggers/Info.lua14
1 files changed, 13 insertions, 1 deletions
diff --git a/Server/Plugins/Debuggers/Info.lua b/Server/Plugins/Debuggers/Info.lua
index 06fabad14..dcdcdd17f 100644
--- a/Server/Plugins/Debuggers/Info.lua
+++ b/Server/Plugins/Debuggers/Info.lua
@@ -100,11 +100,17 @@ g_PluginInfo =
Handler = HandleGCCmd,
HelpString = "Activates the Lua garbage collector"
},
+ ["/getcustomname"] =
+ {
+ Permission = "debuggers",
+ Handler = HandleGetCustomNameCmd,
+ HelpString = "Displays the exact custom name of currently held item (including non-printables)",
+ },
["/getlore"] =
{
Permission = "debuggers",
Handler = HandleGetLoreCmd,
- HelpString = "Displays the Lore of currently held item",
+ HelpString = "Displays the exact Lore of currently held item (including non-printables)",
},
["/hunger"] =
{
@@ -172,6 +178,12 @@ g_PluginInfo =
Handler = HandleSched,
HelpString = "Schedules a simple countdown using cWorld:ScheduleTask()"
},
+ ["/setcustomname"] =
+ {
+ Permission = "debuggers",
+ Handler = HandleSetCustomNameCmd,
+ HelpString = "Sets the custom name for the item currently in hand",
+ },
["/setlore"] =
{
Permission = "debuggers",