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 082c129 commit 7f1b837Copy full SHA for 7f1b837
addons/dialogic/Modules/Text/subsystem_text.gd
@@ -396,7 +396,7 @@ func _ready() -> void:
396
_autopauses = {}
397
var autopause_data: Dictionary = ProjectSettings.get_setting('dialogic/text/autopauses', {})
398
for i in autopause_data.keys():
399
- _autopauses[RegEx.create_from_string(r"(?<!(\[|\{))[.,](?!([\w\s]*!?[\]\}]|$))")] = autopause_data[i]
+ _autopauses[RegEx.create_from_string(r"(?<!(\[|\{))["+i+r"](?!([^{}\[\]]*[\]\}]|$))")] = autopause_data[i]
400
401
402
## Parses the character's display_name and returns the text that
0 commit comments