mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2025-04-19 02:40:23 +02:00
Raise safe region limit to 20000
This commit is contained in:
parent
2f535dd053
commit
418a30c89e
@ -3,7 +3,7 @@ local safe_region_callback = {}
|
|||||||
--`count` is the number of nodes that would possibly be modified
|
--`count` is the number of nodes that would possibly be modified
|
||||||
--`callback` is a callback to run when the user confirms
|
--`callback` is a callback to run when the user confirms
|
||||||
local function safe_region(name, count, callback)
|
local function safe_region(name, count, callback)
|
||||||
if count < 10000 then
|
if count < 20000 then
|
||||||
return callback()
|
return callback()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user