From 88dd678bdc4ba740ad42cc33c06e152912e338d9 Mon Sep 17 00:00:00 2001 From: Anthony Berg Date: Sun, 11 Aug 2024 02:03:30 +0100 Subject: [PATCH] feat(arabot): make rules on trusted shorter and clearer --- src/commands/roles/verification/trusted.ts | 2 +- src/listeners/verification/trusted.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/roles/verification/trusted.ts b/src/commands/roles/verification/trusted.ts index 30d782e..eb78a00 100644 --- a/src/commands/roles/verification/trusted.ts +++ b/src/commands/roles/verification/trusted.ts @@ -146,7 +146,7 @@ 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, do **not** post anything **NSFW**, **no animal products or consumption of animal products**, and follow Discord's ToS." + + "\nMake sure that you follow the rules, especially by **not** posting anything **NSFW**, and **no animal products or consumption of animal products**." + `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`, ) .catch(() => {}); diff --git a/src/listeners/verification/trusted.ts b/src/listeners/verification/trusted.ts index 06a1bf9..70bc6ac 100644 --- a/src/listeners/verification/trusted.ts +++ b/src/listeners/verification/trusted.ts @@ -81,7 +81,7 @@ 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, do **not** post anything **NSFW**, **no animal products or consumption of animal products**, and follow Discord's ToS." + + "\nMake sure that you follow the rules, especially by **not** posting anything **NSFW**, and **no animal products or consumption of animal products**." + `\n\nNot following these rules will result in the **immediate removal** of the ${trusted.name} role.`, ); }