Added a settings toggle for the impersonation feature

This commit is contained in:
barelyprofessional
2025-07-27 01:39:37 -05:00
parent 1b29e85342
commit 92ed776e31
2 changed files with 13 additions and 3 deletions

View File

@@ -927,6 +927,14 @@ public static class BuiltIn
Default = "true",
ValueType = SettingValueType.Boolean,
Regex = "(true|false)"
},
new BuiltInSettingsModel
{
Key = Keys.BotRespondToDiscordImpersonation,
Description = "Whether to respond to Bossman impersonations",
Default = "true",
ValueType = SettingValueType.Boolean,
Regex = "(true|false)"
}
];
@@ -1032,5 +1040,6 @@ public static class BuiltIn
public static string KiwiPeerTubeEnforceWhitelist = "KiwiPeerTube.EnforceWhitelist";
public static string BotDeadBotDetectionInterval = "Bot.DeadBotDetectionInterval";
public static string BotExitOnDeath = "Bot.ExitOnDeath";
public static string BotRespondToDiscordImpersonation = "Bot.RespondToDiscordImpersonation";
}
}