diff options
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,
})
|