From 074029a586d69cb87f570f1085ed97413f8ae118 Mon Sep 17 00:00:00 2001 From: Gael-de-Sailly Date: Sun, 10 May 2015 21:03:46 +0200 Subject: [PATCH] Cleaned code It was useless to run vm:calc_lighting() : it's not supported by this type of voxelmanip, and included in vm:update_map() --- init.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 680fd6f..5ec0549 100644 --- a/init.lua +++ b/init.lua @@ -13,9 +13,7 @@ minetest.register_chatcommand("mapfix", { local maxp = vector.round(vector.add(pos, size + 0.5)) -- use the voxelmanip to fix problems - local vm = minetest.get_voxel_manip() - vm:read_from_map(minp, maxp) - vm:calc_lighting() + local vm = minetest.get_voxel_manip(minp, maxp) vm:update_liquids() vm:write_to_map() vm:update_map()