diff options
Diffstat (limited to 'Server/Plugins/Debuggers/Info.lua')
-rw-r--r-- | Server/Plugins/Debuggers/Info.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Server/Plugins/Debuggers/Info.lua b/Server/Plugins/Debuggers/Info.lua index b9eb0eeda..30dfd8528 100644 --- a/Server/Plugins/Debuggers/Info.lua +++ b/Server/Plugins/Debuggers/Info.lua @@ -22,12 +22,21 @@ g_PluginInfo = Handler = HandleArrowCmd, HelpString = "Creates an arrow going away from the player" }, + ["/blk"] = { Permission = "debuggers", Handler = HandleBlkCmd, HelpString = "Gets info about the block you are looking at" }, + + ["/boom"] = + { + Permission = "debuggers", + Handler = HandleBoomCmd, + HelpString = "Playes a sound and displays an effect at the player's position", + }, + ["/clientversion"] = { Permission = "debuggers", |