diff options
author | Uberi <azhang9@gmail.com> | 2013-08-28 20:28:49 -0400 |
---|---|---|
committer | Uberi <azhang9@gmail.com> | 2013-08-28 20:28:49 -0400 |
commit | 203c3da2af8e17e8b530f21830cb905ad71cecc3 (patch) | |
tree | 997c8fd0b2dd1e58c372b044f5213b0ea099b679 /worldedit_commands/init.lua | |
parent | 272541c9dadc57b0f1dfa54c74f8b0173c4dc07d (diff) |
Add //about.
Diffstat (limited to 'worldedit_commands/init.lua')
-rw-r--r-- | worldedit_commands/init.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index b6c1e79..9977674 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -50,6 +50,14 @@ worldedit.player_axis = function(name) return "z", dir.z > 0 and 1 or -1
end
+minetest.register_chatcommand("/about", {
+ params = "",
+ description = "Get information about the mod",
+ func = function(name, param)
+ worldedit.player_notify(name, "WorldEdit 1.0 is available on this server. Type /help to get a list of commands, or get more information at https://github.com/Uberi/MineTest-WorldEdit/")
+ end,
+})
+
minetest.register_chatcommand("/inspect", {
params = "on/off/1/0/true/false/yes/no/enable/disable",
description = "Enable or disable node inspection",
|