Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,24 @@ const sortedCategories: Categories[] = [
];

const commandsList: Command[] = [
{
words: [`!ai`],
help: `explains why AI-generated responses should be avoided`,
category: "Communication",
handleMessage: (msg) => {
msg.channel.send({
embeds: [
{
title: "Please Avoid AI-Generated Posts",
type: EmbedType.Rich,
description:
"AI-generated responses may seem helpful but are often unverified or misleading unless you’ve personally tried them. This server is for human experience and discussion—many users are here specifically for firsthand insight rather than AI-generated answers. Sharing your own thoughts or experience helps everyone more.",
color: EMBED_COLOR,
},
],
});
},
},
{
words: [`!commands`],
help: `lists all available commands`,
Expand Down