From e5d847f7e6c8dee1ce334ba635240dc38d3362ab Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 9 Jun 2020 21:08:15 +0100 Subject: [PATCH] //count: fix logging --- worldeditadditions_commands/commands/count.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/worldeditadditions_commands/commands/count.lua b/worldeditadditions_commands/commands/count.lua index 7f18149..e4eaa4b 100644 --- a/worldeditadditions_commands/commands/count.lua +++ b/worldeditadditions_commands/commands/count.lua @@ -1,5 +1,3 @@ -local we_c = worldeditadditions_commands - -- ██████ ██████ ██ ██ ███ ██ ████████ -- ██ ██ ██ ██ ██ ████ ██ ██ -- ██ ██ ██ ██ ██ ██ ██ ██ ██ @@ -29,7 +27,7 @@ worldedit.register_command("count", { local time_taken = os.clock() - start_time - minetest.log("action", name.." used //count at "..worldeditadditions.vector.tostring(worldedit.pos1[name]).." - "..worldeditadditions.vector.tostring(worldedit.pos1[name])..", counting "..total.." nodes in "..time_taken.."s") + minetest.log("action", name.." used //count at "..worldeditadditions.vector.tostring(worldedit.pos1[name]).." - "..worldeditadditions.vector.tostring(worldedit.pos2[name])..", counting "..total.." nodes in "..time_taken.."s") return true, result end })