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()
This commit is contained in:
Gael-de-Sailly 2015-05-10 21:03:46 +02:00
parent 12a471f760
commit 074029a586
1 changed files with 1 additions and 3 deletions

View File

@ -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()