1
0
Fork 0

Fix 48b6b18: Increase MAX_VALUATE_OPS to match the previous limit

pull/11926/merge
glx22 2024-01-30 18:26:42 +01:00 committed by Michael Lutz
parent 897b59c158
commit a502453033
1 changed files with 1 additions and 1 deletions

View File

@ -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;