mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-01 18:28:27 +02:00
track's author are now separated by commas instead of newlines
This commit is contained in:
parent
e268a6035b
commit
8c21d29533
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
"TRACK_TEXT_PREFIX": "f'{prefix} ' if (prefix := get_tag_template(track, 'prefix')) else ''",
|
||||
"TRACK_TEXT_SUFFIX": "f' ({suffix})' if (suffix := get_tag_template(track, 'suffix')) else ''",
|
||||
"TRACK_TEXT_NAME": "track.name",
|
||||
"TRACK_TEXT_AUTHORS": "'\\\\n'.join(track.author) if isinstance(track.author, list) else track.author",
|
||||
"TRACK_TEXT_AUTHORS": "', '.join(track.author) if isinstance(track.author, list) else track.author",
|
||||
"TRACK_TEXT_WARNING_IF_DISABLED": "get_color(name='red') @ '/' if track.warning != 0 else ''",
|
||||
"TRACK_TEXT_HIGHLIGHT_START": "get_color(name='azure').raw if eval(highlight_if if (highlight_if := mod_config.specific_settings['highlight_if'].value) is not None else 'False', env={'track': track, 'mod_config': mod_config}) is True else ''",
|
||||
"TRACK_TEXT_HIGHLIGHT_END": "get_color(name='off').raw",
|
||||
|
|
Loading…
Reference in a new issue