From 6fb039fb9dbd9e8f473cc2a9cf7858d30593e35e Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sat, 12 Jan 2013 08:24:04 +0100 Subject: [PATCH] Finally fix anything --- worldedit_commands/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit_commands/init.lua b/worldedit_commands/init.lua index a372703..756ebc4 100644 --- a/worldedit_commands/init.lua +++ b/worldedit_commands/init.lua @@ -555,7 +555,7 @@ minetest.register_chatcommand("/fixlight", { return end - local count = worldedit.dig(pos1, pos2) + local count = worldedit.fixlight(pos1, pos2) minetest.chat_send_player(name, count .. " nodes dug") end, })