From 8622baa31ddb6608b24c00cb82df3e42476122eb Mon Sep 17 00:00:00 2001 From: Drulikar Date: Tue, 23 Jan 2024 06:33:23 -0800 Subject: [PATCH] Fix erronous default value in update paths --- tools/UpdatePaths/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/UpdatePaths/__main__.py b/tools/UpdatePaths/__main__.py index b283257c1234..a8bf8263e9b9 100644 --- a/tools/UpdatePaths/__main__.py +++ b/tools/UpdatePaths/__main__.py @@ -27,7 +27,7 @@ property = @UNSET - will apply the rule only if the property is not mapedited """ -default_map_directory = "../maps" +default_map_directory = "../../maps" replacement_re = re.compile(r'\s*(?P[^{]*)\s*(\{(?P.*)\})?') #urgent todo: replace with actual parser, this is slow as janitor in crit