From 8c2adfd984b05b3dac4ed48b527560687a48012f Mon Sep 17 00:00:00 2001 From: zyphlar Date: Fri, 31 Oct 2025 23:57:59 -0700 Subject: [PATCH] quadruple Taiwan_North threadcount Signed-off-by: zyphlar --- tools/python/maps_generator/generator/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/maps_generator/generator/steps.py b/tools/python/maps_generator/generator/steps.py index ac868ce3d..51ae17c2b 100644 --- a/tools/python/maps_generator/generator/steps.py +++ b/tools/python/maps_generator/generator/steps.py @@ -37,7 +37,7 @@ def multithread_run_if_one_country(func): if len(env.countries) == 1: kwargs.update({"threads_count": settings.THREADS_COUNT}) elif country == 'Taiwan_North': - kwargs.update({"threads_count": 4}) + kwargs.update({"threads_count": 16}) func(env, country, **kwargs) return wrap