Skip to content

Commit

Permalink
FiveM: Fix invalid color for some menu elements
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGrobbe committed Dec 3, 2019
1 parent 80e0127 commit a4b3ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MenuAPI/Menu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ internal async void Draw()
}
else
{
AddTextComponentSubstringPlayerName("~HUD_COLOUR_HB_BLUE~" + MenuSubtitle.ToUpper());
AddTextComponentSubstringPlayerName("~HUD_COLOUR_FREEMODE~" + MenuSubtitle.ToUpper());
}

if (LeftAligned)
Expand Down Expand Up @@ -1305,7 +1305,7 @@ internal async void Draw()
}
else
{
AddTextComponentSubstringPlayerName("~HUD_COLOUR_HB_BLUE~" + counterText.ToUpper());
AddTextComponentSubstringPlayerName("~HUD_COLOUR_FREEMODE~" + counterText.ToUpper());
}
if (LeftAligned)
{
Expand Down

0 comments on commit a4b3ec8

Please sign in to comment.