]> git.lizzy.rs Git - worldedit.git/commitdiff
Raise safe region limit to 20000
authorsfan5 <sfan5@live.de>
Tue, 6 Oct 2020 11:53:22 +0000 (13:53 +0200)
committersfan5 <sfan5@live.de>
Tue, 6 Oct 2020 11:53:22 +0000 (13:53 +0200)
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