Skip to content

Commit

Permalink
change text format
Browse files Browse the repository at this point in the history
  • Loading branch information
th0mk committed Jun 12, 2024
1 parent ce2b25c commit 5acbe9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FMBot.Bot/Builders/GameBuilders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public async Task JumbleProcessAnswer(ContextModel context, ICommandContext comm
var userTitle = await UserService.GetNameAsync(context.DiscordGuild, context.DiscordUser);

var separateResponse = new EmbedBuilder();
separateResponse.WithDescription($"**{userTitle}** got it right! The answer was **`{currentGame.CorrectAnswer}`**");
separateResponse.WithDescription($"**{userTitle}** got it right! The answer was `{currentGame.CorrectAnswer}`");
var timeTaken = DateTime.UtcNow - currentGame.DateStarted;
separateResponse.WithFooter($"Answered in {timeTaken.TotalSeconds.ToString("F1", System.Globalization.CultureInfo.InvariantCulture)}s");
separateResponse.WithColor(DiscordConstants.SpotifyColorGreen);
Expand Down

0 comments on commit 5acbe9a

Please sign in to comment.