Skip to content

Commit

Permalink
Correctly map custom winner/finalist color
Browse files Browse the repository at this point in the history
  • Loading branch information
araszka committed Sep 30, 2024
1 parent 12635a7 commit 3efe2bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@
Vec3 GetCustomLabelColor(Text value, Text defaultColorHex){
declare customLabelColorHex = "";
switch(value){
case "WINNER": customLabelColorHex = "{{ Theme.ScoreboardModule_WinnerColor }}";
case "FINALIST": customLabelColorHex = "{{ Theme.ScoreboardModule_FinalistColor }}";
case _("|Status|Winner"): customLabelColorHex = "{{ Theme.ScoreboardModule_WinnerColor }}";
case _("|Status|Finalist"): customLabelColorHex = "{{ Theme.ScoreboardModule_FinalistColor }}";
}

if(customLabelColorHex == ""){
Expand Down

0 comments on commit 3efe2bd

Please sign in to comment.