From a5024530335730a8cd48887b8f6bf105cdb42aac Mon Sep 17 00:00:00 2001 From: glx22 Date: Tue, 30 Jan 2024 18:26:42 +0100 Subject: [PATCH] Fix 48b6b18: Increase MAX_VALUATE_OPS to match the previous limit --- src/script/api/script_list.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/api/script_list.hpp b/src/script/api/script_list.hpp index a59ff218de..199869ed71 100644 --- a/src/script/api/script_list.hpp +++ b/src/script/api/script_list.hpp @@ -14,7 +14,7 @@ #include "script_object.hpp" /** Maximum number of operations allowed for valuating a list. */ -static const int MAX_VALUATE_OPS = 500000; +static const int MAX_VALUATE_OPS = 1000000; class ScriptListSorter;