import { type Client, Events, type Message } from "discord.js"; export default { event: Events.MessageCreate, async execute(_client: Client, message: Message) { if (message.author.bot) return; if (message.content.includes("grok is this true")) { if (message.channel.isSendable()) await message.channel.send("yeh"); } }, };