From dec94634c9dda53ac8ff1304c33efc31df211f4a Mon Sep 17 00:00:00 2001 From: Simplyalex99 Date: Sun, 15 Jun 2025 15:19:43 -0400 Subject: [PATCH 1/2] add: cross post command --- src/features/commands.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/features/commands.ts b/src/features/commands.ts index ab78ac0a..e565c2ad 100644 --- a/src/features/commands.ts +++ b/src/features/commands.ts @@ -73,6 +73,23 @@ const commandsList: Command[] = [ }); }, }, + { + words: [`!crosspost`], + help: `provides a no cross-post message`, + category: "Communication", + handleMessage: (msg) => { + msg.channel.send({ + embeds: [ + { + title: "Please Avoid Cross-Posting", + type: EmbedType.Rich, + description: `Just a friendly reminder to please avoid posting the same message in multiple channels. Pick the one that best fits your question and give folks a bit of time to respond. If you haven’t heard back after a while, feel free to bump your message.`, + color: EMBED_COLOR, + }, + ], + }); + }, + }, { words: [`!promotion`], help: `informs user's of self-promotion guidelines`, From 5bdce1145766b2b2a253c98e2fffcde6862e11ef Mon Sep 17 00:00:00 2001 From: Simplyalex99 Date: Wed, 18 Jun 2025 14:12:48 -0400 Subject: [PATCH 2/2] update: description text --- src/features/commands.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/commands.ts b/src/features/commands.ts index e565c2ad..ee31f4db 100644 --- a/src/features/commands.ts +++ b/src/features/commands.ts @@ -83,7 +83,7 @@ const commandsList: Command[] = [ { title: "Please Avoid Cross-Posting", type: EmbedType.Rich, - description: `Just a friendly reminder to please avoid posting the same message in multiple channels. Pick the one that best fits your question and give folks a bit of time to respond. If you haven’t heard back after a while, feel free to bump your message.`, + description: "Just a friendly reminder: please avoid posting the same message in multiple channels. Choose the channel that best fits your question and allow some time for a response. If you don’t hear back after a while, feel free to bump your message.", color: EMBED_COLOR, }, ],