diff --git a/src/commandUtils.ts b/src/commandUtils.ts index 50e6226..a3b5dc7 100644 --- a/src/commandUtils.ts +++ b/src/commandUtils.ts @@ -76,6 +76,16 @@ Want to check out my source code? Check it out [here](${config.links.sourceCode Need help with this bot? Join my support server [here](${config.links.supportServer}). Ran into a bug? Report it to my developers using \`/${reportSlashName} [issue description]\`.`, + fields: [{ + name: 'Privacy Policy and Terms of Service:', + value: `**${config.name} does not automatically track or collect user information via Discord.** + +${config.name} stores data relating to events, event channels, and text from the \`/${reportSlashName}\` command. + +For more details, please check out the Privacy Policy on my GitHub [here](${config.links.sourceCode}/blob/master/PRIVACY.md) + +Terms of Service can also be found on my GitHub [here](${config.links.sourceCode}/blob/master/TERMS.md).`, + }], footer: { text: `Current Version: ${config.version}`, }, diff --git a/src/commands/info.ts b/src/commands/info.ts index 5bd0f11..50a40b4 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -8,7 +8,7 @@ import { infoSlashName } from './slashCommandNames.ts'; const details: CommandDetails = { name: infoSlashName, - description: `Information about ${config.name} and its developer.`, + description: `Information about ${config.name}, its Terms of Service, its Privacy Policy, and its developer.`, type: ApplicationCommandTypes.ChatInput, };