diff --git a/worldeditadditions_commands/commands/layers.lua b/worldeditadditions_commands/commands/layers.lua index 6423af2..4c84075 100644 --- a/worldeditadditions_commands/commands/layers.lua +++ b/worldeditadditions_commands/commands/layers.lua @@ -68,8 +68,8 @@ worldedit.register_command("layers", { ) local time_taken = worldeditadditions.get_ms_time() - start_time - print("DEBUG min_slope", min_slope, "max_slope", max_slope) - print("DEBUG min_slope", math.deg(min_slope), "max_slope", math.deg(max_slope)) + -- print("DEBUG min_slope", min_slope, "max_slope", max_slope) + -- print("DEBUG min_slope", math.deg(min_slope), "max_slope", math.deg(max_slope)) minetest.log("action", name .. " used //layers at " .. worldeditadditions.vector.tostring(worldedit.pos1[name]) .. ", replacing " .. changes.replaced .. " nodes and skipping " .. changes.skipped_columns .. " columns ("..changes.skipped_columns_slope.." due to slope constraints) in " .. time_taken .. "s") return true, changes.replaced .. " nodes replaced and " .. changes.skipped_columns .. " columns skipped ("..changes.skipped_columns_slope.." due to slope constraints) in " .. worldeditadditions.format.human_time(time_taken)