]> git.lizzy.rs Git - worldedit.git/blobdiff - worldedit_commands/safe.lua
Raise safe region limit to 20000
[worldedit.git] / worldedit_commands / safe.lua
index 8ce737b53fdd5344fb4189332953f8393918625f..c83cac8a8f7f2ba788dd396ce1e2b95efcf240f2 100644 (file)
@@ -3,7 +3,7 @@ local safe_region_callback = {}
 --`count` is the number of nodes that would possibly be modified\r
 --`callback` is a callback to run when the user confirms\r
 local function safe_region(name, count, callback)\r
-       if count < 10000 then\r
+       if count < 20000 then\r
                return callback()\r
        end\r
 \r