Use newline instead of sending two messages as they come out of order

This commit is contained in:
barelyprofessional
2024-06-20 10:15:53 +08:00
parent c50c5dcd85
commit 4846c0c962

View File

@@ -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;
}