From 9c51be9ab6b919a8889796a8fea1dfb91af1cedb Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Sun, 11 Aug 2024 01:54:15 +0100 Subject: [PATCH] feat(arabot): make the information message for trusted more blunt --- src/commands/roles/verification/trusted.ts | 4 ++-- src/listeners/verification/trusted.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/roles/verification/trusted.ts b/src/commands/roles/verification/trusted.ts index 4647a04..30d782e 100644 --- a/src/commands/roles/verification/trusted.ts +++ b/src/commands/roles/verification/trusted.ts @@ -146,8 +146,8 @@ export class TrustedCommand extends Command { .send( `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.' + - "\nMake sure that you follow the rules, and don't post anything NSFW, anything objectifying animals and follow Discord's ToS." + - `\nNot following these rules can result in the removal of the ${trusted.name} role.`, + "\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." + + `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`, ) .catch(() => {}); info.success = true; diff --git a/src/listeners/verification/trusted.ts b/src/listeners/verification/trusted.ts index f9b4ac4..06a1bf9 100644 --- a/src/listeners/verification/trusted.ts +++ b/src/listeners/verification/trusted.ts @@ -81,8 +81,8 @@ export class TrustedListener extends Listener { await member.user.send( `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.' + - "\nMake sure that you follow the rules, and don't post anything NSFW, anything objectifying animals and follow Discord's ToS." + - `\nNot following these rules can result in the removal of the ${trusted.name} role.`, + "\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." + + `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`, ); } }