From a94a9a11a8bfd6f4a1a97e85f549dcab21178fa8 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:51:07 -0600 Subject: [PATCH] Fix edits --- KfChatDotNetBot/Commands/Kasino/RainCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs index 7d21fc6..f9b7e0c 100644 --- a/KfChatDotNetBot/Commands/Kasino/RainCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/RainCommand.cs @@ -67,7 +67,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 + 1} participant{pluralSuffix}[br]Type [ditto]!rain[/ditto] to participate", + $"LFG {user.FormatUsername()} is now a participant! There's now {rain.Participants.Count + 1} participant{pluralSuffix}! Type [ditto]!rain[/ditto] to participate", true, autoDeleteAfter: cleanupDelay); return; } @@ -129,7 +129,7 @@ public class RainCommand : ICommand timer--; await Task.Delay(1000, ctx); await botInstance.KfClient.EditMessageAsync(msg.ChatMessageUuid!, - $"{user.FormatUsername()} is making it rain with {await decAmount.FormatKasinoCurrencyAsync()}! Type !rain in the next {timer} seconds to join."); + $"🌧️🌧️ {user.FormatUsername()} is making it rain with {await decAmount.FormatKasinoCurrencyAsync()}! Type [ditto]!rain[/ditto] in the next {timer} seconds to join."); } await Task.Delay(100, ctx);