diff options
author | Anthony Zhang <azhang9@gmail.com> | 2013-01-12 16:02:23 -0500 |
---|---|---|
committer | Anthony Zhang <azhang9@gmail.com> | 2013-01-12 16:02:23 -0500 |
commit | 7cb2df24b8c8d9055adbff0825f27138f22a598a (patch) | |
tree | 8b1ce8ca30efdefe483ce3e30677f657805c42e8 /worldedit_commands | |
parent | 6fb039fb9dbd9e8f473cc2a9cf7858d30593e35e (diff) |
Change all references of //dig to //fixlight, document the changes, fix a small typo.
Diffstat (limited to 'worldedit_commands')
-rw-r--r-- | worldedit_commands/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index 756ebc4..b0e15b3 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -546,7 +546,7 @@ minetest.register_chatcommand("/rotate", { minetest.register_chatcommand("/fixlight", {
params = "",
- description = "Fix the Lightning in the current WorldEdit region",
+ description = "Fix the lighting in the current WorldEdit region",
privs = {worldedit=true},
func = function(name, param)
local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name]
@@ -556,7 +556,7 @@ minetest.register_chatcommand("/fixlight", { end
local count = worldedit.fixlight(pos1, pos2)
- minetest.chat_send_player(name, count .. " nodes dug")
+ minetest.chat_send_player(name, count .. " nodes updated")
end,
})
|