From f451f3bf51d9b0ccf00879f2eb48042c8c8feacf Mon Sep 17 00:00:00 2001 From: Faraphel Date: Tue, 26 Jul 2022 23:46:29 +0200 Subject: [PATCH] now using bmg_color_text instead of \\c in the bmg patch --- Pack/MKWFaraphel/macros.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pack/MKWFaraphel/macros.json b/Pack/MKWFaraphel/macros.json index 6c03846..7987521 100644 --- a/Pack/MKWFaraphel/macros.json +++ b/Pack/MKWFaraphel/macros.json @@ -1,7 +1,7 @@ { "GAME_REGION": "str(getattr(getattr(getattr(extracted_game, 'original_game'), 'wit_path'), 'region'))", - "TRACK_TEXT_SCORE": "bmg_color_text(['yellow', 'orange', 'dark red', 'azure'][getattr(track, 'warning', 0)], '\\x'+hex(65296+getattr(track, 'score'))[2:]) if hasattr(track, 'score') else ''", + "TRACK_TEXT_SCORE": "bmg_color_text(['yellow', 'orange', 'dark red', 'azure'][getattr(track, 'warning', 0)], '\\x'+hex(65296+getattr(track, 'score'))[2:]+' ') if hasattr(track, 'score') else ''", "TRACK_TEXT_PREFIX": "(prefix+' ') if prefix else ''", "TRACK_TEXT_SUFFIX": "(' ('+suffix +')') if suffix else ''", "TRACK_TEXT_NAME": "getattr(track, 'name', '')",