Added enable/disable for Krash and cleanup delay as a configurable value

This commit is contained in:
barelyprofessional
2026-04-09 20:48:49 -05:00
parent 9e921d5ff9
commit d4d499aebd
2 changed files with 20 additions and 1 deletions

View File

@@ -570,6 +570,10 @@ public static class BuiltIn
public static string BotDiscordImpersonationDeleteAttempt = "Bot.DiscordImpersonation.DeleteAttempt";
[BuiltInSetting("What search strings the Homoglyphic searcher should look for", SettingValueType.Array, "[\"discord16.png\", \"mBossmanJack:\", \"mBossnanJack:\", \"mBosmanJack:\", \"by @KenoGPT at\"]")]
public static string BotDiscordImpersonationSearchStrings = "Bot.DiscordImpersonation.SearchStrings";
[BuiltInSetting("Whether krash is enabled", SettingValueType.Boolean, "true", BooleanRegex)]
public static string KasinoKrashEnabled = "Kasino.Krash.Enabled";
[BuiltInSetting("Delay in milliseconds before cleaning up krash", SettingValueType.Text, "10000", WholeNumberRegex)]
public static string KasinoKrashCleanupDelay = "Kasino.Krash.CleanupDelay";
}
}