From 52bcb012ac8b0e1a12b211c5b27271f7e613de18 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 6 Feb 2025 10:41:53 +0800 Subject: [PATCH] Clean up more deadnaming --- KfChatDotNetBot/Services/BotServices.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KfChatDotNetBot/Services/BotServices.cs b/KfChatDotNetBot/Services/BotServices.cs index 5a213f2..7f71fbd 100644 --- a/KfChatDotNetBot/Services/BotServices.cs +++ b/KfChatDotNetBot/Services/BotServices.cs @@ -577,7 +577,7 @@ public class BotServices private void OnTwitchStreamCommercial(object sender, int channelId, int length, bool scheduled) { var settings = Helpers - .GetMultipleValues([BuiltIn.Keys.TwitchShillRestreamOnCommercial, BuiltIn.Keys.RestreamUrl]).Result; + .GetMultipleValues([BuiltIn.Keys.TwitchShillRestreamOnCommercial, BuiltIn.Keys.RestreamUrl, BuiltIn.Keys.TwitchBossmanJackUsername]).Result; if (!settings[BuiltIn.Keys.TwitchShillRestreamOnCommercial].ToBoolean()) { _logger.Debug("Not shilling as it's disabled"); @@ -586,7 +586,7 @@ public class BotServices _chatBot.SendChatMessage( $"Did you just get a {length} second ad on Twitch? The Keno Kasino encourages Total Advertiser Death.[br]" + - $"Bossman streams are being re-streamed in low latency, ad-free form thanks to @Kees H. Do not watch ads.[br]{settings[BuiltIn.Keys.RestreamUrl].Value}", + $"{settings[BuiltIn.Keys.TwitchBossmanJackUsername].Value} streams are being re-streamed in low latency, ad-free form thanks to @Kees H. Do not watch ads.[br]{settings[BuiltIn.Keys.RestreamUrl].Value}", true); }