diff options
author | sfan5 <sfan5@live.de> | 2013-01-12 08:10:19 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2013-01-12 08:10:19 +0100 |
commit | 5f1fb56b8b02ec17f76f86b6e770ea8ad87fc68e (patch) | |
tree | efcedb3ceec9fd939f29758d7d17e5a6913bd352 /worldedit_commands/init.lua | |
parent | 89e18d61080d1ccc4990c82570b1f0672daa8509 (diff) |
Rename //dig to //fixlight
Diffstat (limited to 'worldedit_commands/init.lua')
-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 4529470..a372703 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -544,9 +544,9 @@ minetest.register_chatcommand("/rotate", { end,
})
-minetest.register_chatcommand("/dig", {
+minetest.register_chatcommand("/fixlight", {
params = "",
- description = "Dig the current WorldEdit region",
+ description = "Fix the Lightning in the current WorldEdit region",
privs = {worldedit=true},
func = function(name, param)
local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name]
|