From 96f17c14cf096666d35f8c57f12330a50a06ada4 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Wed, 28 Jan 2026 00:45:23 -0600 Subject: [PATCH] Missing + 1 for participant count --- KfChatDotNetBot/Commands/Kasino/RainCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs index 3cd1e83..5caee02 100644 --- a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs @@ -60,7 +60,7 @@ public class RainCommand : ICommand var pluralSuffix = string.Empty; if (rain.Participants.Count > 0) pluralSuffix = "s"; await botInstance.SendChatMessageAsync( - $"LFG {user.FormatUsername()} is now a participant! There's now {rain.Participants.Count} participant{pluralSuffix}", + $"LFG {user.FormatUsername()} is now a participant! There's now {rain.Participants.Count + 1} participant{pluralSuffix}", true, autoDeleteAfter: cleanupDelay); return; }