From 5f250ebd1d76563e7f70eddd1f3f8b8b7f061994 Mon Sep 17 00:00:00 2001 From: Ed Halley <1223980+hariedo@users.noreply.github.com> Date: Fri, 14 Nov 2025 21:04:57 -0600 Subject: [PATCH 1/2] Rewording in ReminderService.cs --- DiscordBot/Services/ReminderService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DiscordBot/Services/ReminderService.cs b/DiscordBot/Services/ReminderService.cs index 9c8b66ad..35676991 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; @@ -154,7 +154,7 @@ private async Task CheckReminders() } // 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 +187,4 @@ public bool RestartService() Initialize(); return IsRunning; } -} \ No newline at end of file +} From 2b6da5add6168a0011d80a32dea4cb2254d9e321 Mon Sep 17 00:00:00 2001 From: Ed Halley <1223980+hariedo@users.noreply.github.com> Date: Fri, 14 Nov 2025 21:42:53 -0600 Subject: [PATCH 2/2] Update ReminderService.cs --- DiscordBot/Services/ReminderService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DiscordBot/Services/ReminderService.cs b/DiscordBot/Services/ReminderService.cs index 35676991..ad34d2a7 100644 --- a/DiscordBot/Services/ReminderService.cs +++ b/DiscordBot/Services/ReminderService.cs @@ -152,6 +152,8 @@ 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({extraUsers} also signed on {BotResponseEmoji})";