Add mention of opt-out to the @mention and [[privacy commands
This commit is contained in:
parent
38146a3c8f
commit
f43cf0fa31
|
@ -21,8 +21,10 @@ export const handleMentions = (message: DiscordenoMessage) => {
|
|||
color: infoColor1,
|
||||
title: `Hello! I am ${config.name}!`,
|
||||
fields: [{
|
||||
name: 'I am a bot that specializes in rolling dice and doing basic algebra',
|
||||
value: `To learn about my available commands, please run \`${config.prefix}help\``,
|
||||
name: 'I am a bot that specializes in rolling dice and doing basic algebra.',
|
||||
value: `To learn about my available commands, please run \`${config.prefix}help\`.
|
||||
|
||||
Want me to ignore you? Simply run \`${config.prefix}opt-out\` and ${config.name} will no longer read your messages or respond to you.`,
|
||||
}],
|
||||
}],
|
||||
}).catch((e: Error) => utils.commonLoggers.messageSendError('handleMentions.ts:30', message, e));
|
||||
|
|
|
@ -22,7 +22,9 @@ export const privacy = (message: DiscordenoMessage) => {
|
|||
|
||||
For more details, please check out the Privacy Policy on the GitHub [here](https://github.com/Burn-E99/TheArtificer/blob/master/PRIVACY.md).
|
||||
|
||||
Terms of Service can also be found on GitHub [here](https://github.com/Burn-E99/TheArtificer/blob/master/TERMS.md).`,
|
||||
Terms of Service can also be found on GitHub [here](https://github.com/Burn-E99/TheArtificer/blob/master/TERMS.md).
|
||||
|
||||
Want me to ignore you? Simply run \`${config.prefix}opt-out\` and ${config.name} will no longer read your messages or respond to you.`,
|
||||
}],
|
||||
}],
|
||||
}).catch((e: Error) => utils.commonLoggers.messageSendError('privacy.ts:33', message, e));
|
||||
|
|
Loading…
Reference in New Issue