mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-18 00:08:25 +01:00
Updated mapfix
This commit is contained in:
parent
262de90f14
commit
bd352beaf3
0
mods/mapfix/LICENSE
Executable file → Normal file
0
mods/mapfix/LICENSE
Executable file → Normal file
0
mods/mapfix/README.md
Executable file → Normal file
0
mods/mapfix/README.md
Executable file → Normal file
4
mods/mapfix/init.lua
Executable file → Normal file
4
mods/mapfix/init.lua
Executable file → Normal file
@ -18,12 +18,12 @@ minetest.register_chatcommand("mapfix", {
|
|||||||
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 40
|
||||||
local privs = minetest.check_player_privs(name, {server=true})
|
local privs = minetest.check_player_privs(name, {server=true})
|
||||||
local time = os.clock()
|
local time = os.time()
|
||||||
|
|
||||||
if not privs then
|
if not privs then
|
||||||
if size > 50 and 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"
|
return false, "You need the server privilege to exceed the radius of " .. max_size .. " blocks"
|
||||||
elseif time - previous < 15 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\"."
|
||||||
end
|
end
|
||||||
previous = time
|
previous = time
|
||||||
|
Loading…
Reference in New Issue
Block a user