diff --git a/DiscordBot/Services/ReminderService.cs b/DiscordBot/Services/ReminderService.cs index 9c8b66ad..ad34d2a7 100644 --- a/DiscordBot/Services/ReminderService.cs +++ b/DiscordBot/Services/ReminderService.cs @@ -139,7 +139,7 @@ private async Task CheckReminders() // We reply to their original message if (message != null) { - string botResponse = $"{message.Author.Mention} reminder: \"{reminder.Message}\""; + string botResponse = $"Reminding {message.Author.Mention}: \"{reminder.Message}\""; // Get the people who reacted to the message var includeUsers = await message.GetReactionUsersAsync(BotResponseEmoji, 10).FlattenAsync(); string extraUsers = string.Empty; @@ -152,9 +152,11 @@ private async Task CheckReminders() extraUsers += $"{includeUser.Mention} "; } + extraUsers = extraUsers.TrimEnd(); + // If there are any extra users, we add them to the bot response if (extraUsers != string.Empty) - botResponse += $"\n\nReacted Extras: {extraUsers}"; + botResponse += $"\n({extraUsers} also signed on {BotResponseEmoji})"; await message.ReplyAsync(botResponse); continue; @@ -187,4 +189,4 @@ public bool RestartService() Initialize(); return IsRunning; } -} \ No newline at end of file +}