We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34da756 commit e4bc2e7Copy full SHA for e4bc2e7
src/init.py
@@ -10,4 +10,4 @@
10
11
USER = 'Y-RyuZU'
12
REPO = 'MinecraftModsLocalizer'
13
-VERSION = 'v2.0.2'
+VERSION = 'v2.0.3'
src/quests.py
@@ -44,7 +44,7 @@ def translate_quests_from_snbt(file_path):
44
description_pattern = r'description: \[\s*([\s\S]*?)\s*\]'
45
description_matches = re.findall(description_pattern, content)
46
for match in description_matches:
47
- for inner_match in re.findall(r'"(.*?)"', match):
+ for inner_match in re.findall(r'(?<!\\)"(.*?)(?<!\\)"', match):
48
if inner_match: # Non-empty strings
49
extracted_strings.append(inner_match)
50
0 commit comments