mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-17 15:58:26 +01:00
improve mapfix
This commit is contained in:
parent
5ef13a8aca
commit
9692451ede
@ -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
|
||||||
@ -21,7 +21,7 @@ minetest.register_chatcommand("mapfix", {
|
|||||||
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\"."
|
||||||
|
Loading…
Reference in New Issue
Block a user