From 418a30c89e426f769365dd2955fcde1c0f35adb7 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Tue, 6 Oct 2020 13:53:22 +0200 Subject: [PATCH] Raise safe region limit to 20000 --- worldedit_commands/safe.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit_commands/safe.lua b/worldedit_commands/safe.lua index 8ce737b..c83cac8 100644 --- a/worldedit_commands/safe.lua +++ b/worldedit_commands/safe.lua @@ -3,7 +3,7 @@ local safe_region_callback = {} --`count` is the number of nodes that would possibly be modified --`callback` is a callback to run when the user confirms local function safe_region(name, count, callback) - if count < 10000 then + if count < 20000 then return callback() end