feat(arabot): make the information message for trusted more blunt

This commit is contained in:
Anthony Berg 2024-08-11 01:54:15 +01:00
parent 128b15f18f
commit 9c51be9ab6
2 changed files with 4 additions and 4 deletions

View File

@ -146,8 +146,8 @@ export class TrustedCommand extends Command {
.send( .send(
`You have been given the ${trusted.name} role by ${mod}!` + `You have been given the ${trusted.name} role by ${mod}!` +
'\n\nThis role allows you to post attachments to the server and stream in VCs.' + '\n\nThis role allows you to post attachments to the server and stream in VCs.' +
"\nMake sure that you follow the rules, and don't post anything NSFW, anything objectifying animals and follow Discord's ToS." + "\nMake sure that you follow the rules, do **not** post anything **NSFW**, **no animal products or consumption of animal products**, and follow Discord's ToS." +
`\nNot following these rules can result in the removal of the ${trusted.name} role.`, `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`,
) )
.catch(() => {}); .catch(() => {});
info.success = true; info.success = true;

View File

@ -81,8 +81,8 @@ export class TrustedListener extends Listener {
await member.user.send( await member.user.send(
`Hi, you have been given the ${trusted.name} as you have been interacting in ARA for a long enough time!` + `Hi, you have been given the ${trusted.name} as you have been interacting in ARA for a long enough time!` +
'\n\nThis role allows you to post attachments to the server and stream in VCs.' + '\n\nThis role allows you to post attachments to the server and stream in VCs.' +
"\nMake sure that you follow the rules, and don't post anything NSFW, anything objectifying animals and follow Discord's ToS." + "\nMake sure that you follow the rules, do **not** post anything **NSFW**, **no animal products or consumption of animal products**, and follow Discord's ToS." +
`\nNot following these rules can result in the removal of the ${trusted.name} role.`, `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`,
); );
} }
} }