Added an image for when christopherdj goes live and removed the checks for if austingambles is live

This commit is contained in:
barelyprofessional
2025-02-23 17:25:08 +08:00
parent 178a89d912
commit 64d7e38619
2 changed files with 14 additions and 14 deletions

View File

@@ -832,16 +832,6 @@ public static class BuiltIn
ValueType = SettingValueType.Text
},
new BuiltInSettingsModel
{
Key = Keys.BotToyStoryImageOnChrisDjLive,
Regex = "(true|false)",
Description = "Whether to spam the Toy Story image joke when ChrisDJ goes live while BossmanAustin is live",
Default = "false",
IsSecret = false,
CacheDuration = TimeSpan.FromHours(1),
ValueType = SettingValueType.Boolean
},
new BuiltInSettingsModel
{
Key = Keys.TwitchCommercialRestreamShillMessage,
Regex = ".+",
@@ -850,6 +840,16 @@ public static class BuiltIn
IsSecret = false,
CacheDuration = TimeSpan.FromHours(1),
ValueType = SettingValueType.Text
},
new BuiltInSettingsModel
{
Key = Keys.BotChrisDjLiveImage,
Regex = ".+",
Description = "Image that the bot will send when ChrisDJ goes live",
Default = "https://kiwifarms.st/attachments/nonce-live-png.7015533/",
IsSecret = false,
CacheDuration = TimeSpan.FromHours(1),
ValueType = SettingValueType.Text
}
];
@@ -917,7 +917,7 @@ public static class BuiltIn
public static string BotImageAcceptableKeys = "Bot.Image.AcceptableKeys";
public static string BotToyStoryImage = "Bot.ToyStoryImage";
public static string BotImageRandomSliceDivideBy = "Bot.Image.RandomSliceDivideBy";
public static string BotToyStoryImageOnChrisDjLive = "Bot.ToyStoryImageOnChrisDjLive";
public static string TwitchCommercialRestreamShillMessage = "Twitch.CommercialRestreamShillMessage";
public static string BotChrisDjLiveImage = "Bot.ChrisDjLiveImage";
}
}