Improve mapfix, thanks to crabman77

This commit is contained in:
Gael-de-Sailly 2015-10-04 23:01:59 +02:00
parent 9a7e5e4fca
commit e2a61c8dd0
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ local function mapfix(minp, maxp)
vm:update_map() vm:update_map()
end end
local previous = -math.huge local previous = os.time()
local default_size = tonumber(minetest.setting_get("mapfix_default_size")) or 40 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 max_size = tonumber(minetest.setting_get("mapfix_max_size")) or 50
@ -16,12 +16,12 @@ minetest.register_chatcommand("mapfix", {
description = "Recalculate the flowing liquids and the light of a chunk", description = "Recalculate the flowing liquids and the light of a chunk",
func = function(name, param) func = function(name, param)
local pos = minetest.get_player_by_name(name):getpos() local pos = minetest.get_player_by_name(name):getpos()
local size = tonumber(param) or 40 local size = tonumber(param) or default_size
local privs = minetest.check_player_privs(name, {server=true}) local privs = minetest.check_player_privs(name, {server=true})
local time = os.time() local time = os.time()
if not privs then if not privs then
if size > 50 and not privs then if size > max_size then
return false, "You need the server privilege to exceed the radius of " .. max_size .. " blocks" return false, "You need the server privilege to exceed the radius of " .. max_size .. " blocks"
elseif time - previous < delay then elseif time - previous < delay then
return false, "Wait at least " .. delay .. " seconds from the previous \"/mapfix\"." return false, "Wait at least " .. delay .. " seconds from the previous \"/mapfix\"."