From 4846c0c9626976b5ceb47638ace30fa74f0edbe3 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:15:53 +0800 Subject: [PATCH] Use newline instead of sending two messages as they come out of order --- KfChatDotNetKickBot/KickBot.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetKickBot/KickBot.cs b/KfChatDotNetKickBot/KickBot.cs index fbfd1f6..710b9be 100644 --- a/KfChatDotNetKickBot/KickBot.cs +++ b/KfChatDotNetKickBot/KickBot.cs @@ -143,8 +143,8 @@ public class KickBot _logger.Info($"BossmanJack stream event came in. isLive => {isLive}"); if (isLive) { - _sendChatMessage("BossmanJack just went live on Twitch! https://www.twitch.tv/thebossmanjack"); - _sendChatMessage("Ad-free re-stream at https://kick.com/wheelfan courtesy of @Kees H"); + _sendChatMessage("BossmanJack just went live on Twitch! https://www.twitch.tv/thebossmanjack\r\n" + + "Ad-free re-stream at https://kick.com/wheelfan courtesy of @Kees H"); _isBmjLive = true; return; }