Fix 48b6b18: Increase MAX_VALUATE_OPS to match the previous limit

(cherry picked from commit a502453033)
This commit is contained in:
glx22
2024-01-30 18:26:42 +01:00
committed by Jonathan G Rennison
parent 66e57e6b2d
commit 48c97d6cde

View File

@@ -16,7 +16,7 @@
#include "../../3rdparty/cpp-btree/safe_btree_map.h"
/** 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;