mapfix/init.lua

40 lines
1.3 KiB
Lua
Raw Normal View History

2015-07-02 16:38:02 +02:00
local function mapfix(minp, maxp)
local vm = minetest.get_voxel_manip(minp, maxp)
vm:update_liquids()
vm:write_to_map()
vm:update_map()
end
local previous = -math.huge
local default_size = tonumber(minetest.setting_get("mapfix_default_size")) or 40
local max_size = tonumber(minetest.setting_get("mapfix_max_size")) or 50
local delay = tonumber(minetest.setting_get("mapfix_delay")) or 15
2014-11-30 20:19:22 +01:00
minetest.register_chatcommand("mapfix", {
params = "<size>",
2014-11-30 21:57:35 +01:00
description = "Recalculate the flowing liquids and the light of a chunk",
2014-11-30 20:19:22 +01:00
func = function(name, param)
local pos = minetest.get_player_by_name(name):getpos()
local size = tonumber(param) or 40
2015-07-02 16:38:02 +02:00
local privs = minetest.check_player_privs(name, {server=true})
local time = os.time()
2014-11-30 21:57:35 +01:00
2015-07-02 16:38:02 +02:00
if not privs then
if size > 50 and not privs then
return false, "You need the server privilege to exceed the radius of " .. max_size .. " blocks"
elseif time - previous < delay then
2015-07-02 16:38:02 +02:00
return false, "Wait at least " .. delay .. " seconds from the previous \"/mapfix\"."
end
previous = time
2014-11-30 20:19:22 +01:00
end
2014-11-30 21:57:35 +01:00
local minp = vector.round(vector.subtract(pos, size - 0.5))
local maxp = vector.round(vector.add(pos, size + 0.5))
2015-07-02 16:38:02 +02:00
minetest.log("action", name .. " uses mapfix at " .. minetest.pos_to_string(vector.round(pos)) .. " with radius " .. size)
mapfix(minp, maxp)
2014-11-30 20:19:22 +01:00
return true, "Done."
end,
})